diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2016-02-09 12:33:53 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2016-02-09 12:33:53 +0000 |
commit | ba181dec750ea3b66f634120264c49be986e4769 (patch) | |
tree | 64cb1d2a5e4bb327a4521f0aecbc7a747e9ad12d /package/kernel | |
parent | 8af330007f245e2f13b514720dd5bba10acb1b37 (diff) | |
download | master-187ad058-ba181dec750ea3b66f634120264c49be986e4769.tar.gz master-187ad058-ba181dec750ea3b66f634120264c49be986e4769.tar.bz2 master-187ad058-ba181dec750ea3b66f634120264c49be986e4769.zip |
mvebu: fix WRT1900AC v1 LED driver module
Update OpenWRT build tree to reflect changes in TLC-591xx LED family driver.
In kernels < 4.0 the driver was present in form of a patch for the TLC-59116 chip,
and was upstreamed later in kernels > 4.0 to support the entire chip family.
Signed-off-by: Sebastian Careba <nitroshift@yahoo.com>
[jow: fix Kconfig symbol name]
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48684 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/linux/modules/leds.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/package/kernel/linux/modules/leds.mk b/package/kernel/linux/modules/leds.mk index 996deb3790..c4261d31ac 100644 --- a/package/kernel/linux/modules/leds.mk +++ b/package/kernel/linux/modules/leds.mk @@ -199,17 +199,17 @@ endef $(eval $(call KernelPackage,leds-pca963x)) -define KernelPackage/leds-tlc59116 +define KernelPackage/leds-tlc591xx SUBMENU:=$(LEDS_MENU) - TITLE:=TLC59116 LED support + TITLE:=TLC591xx LED support DEPENDS:=@TARGET_mvebu +kmod-i2c-core +kmod-regmap - KCONFIG:=CONFIG_LEDS_TLC59116 - FILES:=$(LINUX_DIR)/drivers/leds/leds-tlc59116.ko - AUTOLOAD:=$(call AutoLoad,60,leds-tlc59116,1) + KCONFIG:=CONFIG_LEDS_TLC591XX + FILES:=$(LINUX_DIR)/drivers/leds/leds-tlc591xx.ko + AUTOLOAD:=$(call AutoLoad,60,leds-tlc591xx,1) endef -define KernelPackage/leds-tlc59116/description - Kernel module for LEDs on TLC59116 +define KernelPackage/leds-tlc591xx/description + Kernel module for LEDs on TLC591xx endef -$(eval $(call KernelPackage,leds-tlc59116)) +$(eval $(call KernelPackage,leds-tlc591xx)) |