aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2016-02-09 12:33:53 +0000
committerJo-Philipp Wich <jow@openwrt.org>2016-02-09 12:33:53 +0000
commit2d04407e404183f72901b4fdb53c4625518b0bd9 (patch)
tree78d97eb2334ca9a3e229fac79ff524c2883394cc
parent791076dae83449359286841127ab5a16818892b3 (diff)
downloadupstream-2d04407e404183f72901b4fdb53c4625518b0bd9.tar.gz
upstream-2d04407e404183f72901b4fdb53c4625518b0bd9.tar.bz2
upstream-2d04407e404183f72901b4fdb53c4625518b0bd9.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> SVN-Revision: 48684
-rw-r--r--package/kernel/linux/modules/leds.mk16
-rw-r--r--target/linux/mvebu/profiles/linksys.mk2
2 files changed, 9 insertions, 9 deletions
diff --git a/package/kernel/linux/modules/leds.mk b/package/kernel/linux/modules/leds.mk
index 996deb3790c..c4261d31acc 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))
diff --git a/target/linux/mvebu/profiles/linksys.mk b/target/linux/mvebu/profiles/linksys.mk
index 1a5b8afdaa4..9c954bd305c 100644
--- a/target/linux/mvebu/profiles/linksys.mk
+++ b/target/linux/mvebu/profiles/linksys.mk
@@ -53,7 +53,7 @@ define Profile/Mamba
kmod-ata-core kmod-ata-marvell-sata \
kmod-rtc-marvell kmod-thermal-armada \
kmod-gpio-button-hotplug kmod-hwmon-tmp421 \
- kmod-hwmon-pwmfan kmod-leds-tlc59116 \
+ kmod-hwmon-pwmfan kmod-leds-tlc591xx \
kmod-ledtrig-usbdev kmod-mwlwifi wpad-mini \
swconfig
endef
01'>201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293