diff options
author | Thomas Weißschuh <linux@weissschuh.net> | 2024-06-13 16:48:39 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-06-21 12:41:46 +0200 |
commit | 8d6ce6f3ec9d5f384e3eac92e43cfeac7a36e6b1 (patch) | |
tree | 08884f6ca687dc7904129725a9d260533102836d /drivers/leds/Makefile | |
parent | leds: core: Unexport led_colors[] array (diff) | |
download | linux-8d6ce6f3ec9d5f384e3eac92e43cfeac7a36e6b1.tar.xz linux-8d6ce6f3ec9d5f384e3eac92e43cfeac7a36e6b1.zip |
leds: Add ChromeOS EC driver
The ChromeOS Embedded Controller exposes an LED control command.
Expose its functionality through the leds subsystem.
The LEDs are exposed as multicolor devices.
A hardware trigger, which is active by default, is provided to let the
EC itself take over control over the LED.
The driver is designed to be probed via the cros_ec mfd device.
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Link: https://lore.kernel.org/r/20240613-cros_ec-led-v3-4-500b50f41e0f@weissschuh.net
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/leds/Makefile')
-rw-r--r-- | drivers/leds/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index effdfc6f1e95..3491904e13f7 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile @@ -26,6 +26,7 @@ obj-$(CONFIG_LEDS_CLEVO_MAIL) += leds-clevo-mail.o obj-$(CONFIG_LEDS_COBALT_QUBE) += leds-cobalt-qube.o obj-$(CONFIG_LEDS_COBALT_RAQ) += leds-cobalt-raq.o obj-$(CONFIG_LEDS_CPCAP) += leds-cpcap.o +obj-$(CONFIG_LEDS_CROS_EC) += leds-cros_ec.o obj-$(CONFIG_LEDS_DA903X) += leds-da903x.o obj-$(CONFIG_LEDS_DA9052) += leds-da9052.o obj-$(CONFIG_LEDS_GPIO) += leds-gpio.o |