mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Add support for the RGB LEDs found in certain Samsung S2M series PMICs. The device has three LED channels, controlled as a single device. These LEDs are typically used as status indicators in mobile phones. The driver includes initial support for the S2MU005 PMIC RGB LEDs. Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org> Link: https://patch.msgid.link/20260516-s2mu005-pmic-v7-7-73f9702fb461@disroot.org Signed-off-by: Lee Jones <lee@kernel.org>
13 lines
546 B
Makefile
13 lines
546 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_LEDS_GROUP_MULTICOLOR) += leds-group-multicolor.o
|
|
obj-$(CONFIG_LEDS_KTD202X) += leds-ktd202x.o
|
|
obj-$(CONFIG_LEDS_LP5812) += leds-lp5812.o
|
|
obj-$(CONFIG_LEDS_LP5860_CORE) += leds-lp5860-core.o
|
|
obj-$(CONFIG_LEDS_LP5860_SPI) += leds-lp5860-spi.o
|
|
obj-$(CONFIG_LEDS_NCP5623) += leds-ncp5623.o
|
|
obj-$(CONFIG_LEDS_PWM_MULTICOLOR) += leds-pwm-multicolor.o
|
|
obj-$(CONFIG_LEDS_QCOM_LPG) += leds-qcom-lpg.o
|
|
obj-$(CONFIG_LEDS_S2M_RGB) += leds-s2m-rgb.o
|
|
obj-$(CONFIG_LEDS_MT6370_RGB) += leds-mt6370-rgb.o
|