forked from Minki/linux
1d6a1b5e50
The Qualcomm LPG driver fails to probe unless PWM support is enabled so
add the missing Kconfig dependency.
Fixes: 24e2d05d1b
("leds: Add driver for Qualcomm LPG")
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
30 lines
938 B
Plaintext
30 lines
938 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
if LEDS_CLASS_MULTICOLOR
|
|
|
|
config LEDS_PWM_MULTICOLOR
|
|
tristate "PWM driven multi-color LED Support"
|
|
depends on PWM
|
|
help
|
|
This option enables support for PWM driven monochrome LEDs that are
|
|
grouped into multicolor LEDs.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called leds-pwm-multicolor.
|
|
|
|
config LEDS_QCOM_LPG
|
|
tristate "LED support for Qualcomm LPG"
|
|
depends on OF
|
|
depends on PWM
|
|
depends on SPMI
|
|
help
|
|
This option enables support for the Light Pulse Generator found in a
|
|
wide variety of Qualcomm PMICs. The LPG consists of a number of PWM
|
|
channels and typically a shared pattern lookup table and a current
|
|
sink, intended to drive RGB LEDs. Each channel can either be used as
|
|
a LED, grouped to represent a RGB LED or exposed as PWM channels.
|
|
|
|
If compiled as a module, the module will be named leds-qcom-lpg.
|
|
|
|
endif # LEDS_CLASS_MULTICOLOR
|