diff options
author | Lukas Bulwahn <lukas.bulwahn@gmail.com> | 2023-06-09 13:02:33 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-06-15 17:06:54 +0300 |
commit | f1fb98090bfcd2b7403807257220156a3b68737f (patch) | |
tree | dd26aa5ea83d97f6b1f1232f32b59155723ee44d /drivers/leds | |
parent | 9bb0a9e0626ccaaff268de12d4cde4d4c3c3c9d7 (diff) | |
download | linux-f1fb98090bfcd2b7403807257220156a3b68737f.tar.xz |
leds: Fix config reference for AW200xx driver
Commit 36a87f371b7a ("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: 36a87f371b7a ("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>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index df6bf408212c..d71f1226540c 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile @@ -14,7 +14,7 @@ obj-$(CONFIG_LEDS_ADP5520) += leds-adp5520.o obj-$(CONFIG_LEDS_AN30259A) += leds-an30259a.o obj-$(CONFIG_LEDS_APU) += leds-apu.o obj-$(CONFIG_LEDS_ARIEL) += leds-ariel.o -obj-$(CONFIG_LEDS_W200XX) += leds-aw200xx.o +obj-$(CONFIG_LEDS_AW200XX) += leds-aw200xx.o obj-$(CONFIG_LEDS_AW2013) += leds-aw2013.o obj-$(CONFIG_LEDS_BCM6328) += leds-bcm6328.o obj-$(CONFIG_LEDS_BCM6358) += leds-bcm6358.o |