Skip to content

Commit f1fb980

Browse files
bulwahnlag-linaro
authored andcommitted
leds: Fix config reference for AW200xx driver
Commit 36a87f3 ("leds: Add AW20xx driver") adds config LEDS_AW200XX in drivers/leds/Kconfig, but then in drivers/leds/Makefile accidently refers to CONFIG_LEDS_W200XX; note the missing A! This typo makes it impossible to add the driver to a kernel build. Fix this wrong config reference. Fixes: 36a87f3 ("leds: Add AW20xx driver") Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Link: https://lore.kernel.org/r/20230609100233.4111-1-lukas.bulwahn@gmail.com Signed-off-by: Lee Jones <lee@kernel.org>
1 parent 9bb0a9e commit f1fb980

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/leds/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ obj-$(CONFIG_LEDS_ADP5520) += leds-adp5520.o
1414
obj-$(CONFIG_LEDS_AN30259A) += leds-an30259a.o
1515
obj-$(CONFIG_LEDS_APU) += leds-apu.o
1616
obj-$(CONFIG_LEDS_ARIEL) += leds-ariel.o
17-
obj-$(CONFIG_LEDS_W200XX) += leds-aw200xx.o
17+
obj-$(CONFIG_LEDS_AW200XX) += leds-aw200xx.o
1818
obj-$(CONFIG_LEDS_AW2013) += leds-aw2013.o
1919
obj-$(CONFIG_LEDS_BCM6328) += leds-bcm6328.o
2020
obj-$(CONFIG_LEDS_BCM6358) += leds-bcm6358.o

0 commit comments

Comments
 (0)