diff options
author | Kim, Milo <Milo.Kim@ti.com> | 2012-07-20 04:43:59 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@canonical.com> | 2012-07-26 00:04:33 -0400 |
commit | eb80411b54fde031e9a8b368ff7b32c774ecfc5c (patch) | |
tree | 6b7183457dec3835c421a6e0a2c8242cb841180e /drivers/leds/Makefile | |
parent | b54cf35a7f656c61dd695509e8cf8cc7e1dc3e53 (diff) |
leds: add new lp8788 led driver
TI LP8788 PMU has the current sink as the keyboard led driver.
The brightness is controlled by the i2c commands.
Configurable parameters can be defined in the platform side.
Patch v2.
(a) use workqueue on changing the brightness
(b) use mutex_lock/unlock when the brightness is set
and the led block of lp8788 device is enabled
(c) remove err_dev on _probe()
: just return as returned value if any errors
(d) replace module_init/exit() with module_platform_driver()
(e) add led configuration structure and loading them by default
if platform data is null
Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
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 d94d18f8a4be..a4429a9217bc 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile | |||
@@ -24,6 +24,7 @@ obj-$(CONFIG_LEDS_GPIO) += leds-gpio.o | |||
24 | obj-$(CONFIG_LEDS_LP3944) += leds-lp3944.o | 24 | obj-$(CONFIG_LEDS_LP3944) += leds-lp3944.o |
25 | obj-$(CONFIG_LEDS_LP5521) += leds-lp5521.o | 25 | obj-$(CONFIG_LEDS_LP5521) += leds-lp5521.o |
26 | obj-$(CONFIG_LEDS_LP5523) += leds-lp5523.o | 26 | obj-$(CONFIG_LEDS_LP5523) += leds-lp5523.o |
27 | obj-$(CONFIG_LEDS_LP8788) += leds-lp8788.o | ||
27 | obj-$(CONFIG_LEDS_TCA6507) += leds-tca6507.o | 28 | obj-$(CONFIG_LEDS_TCA6507) += leds-tca6507.o |
28 | obj-$(CONFIG_LEDS_CLEVO_MAIL) += leds-clevo-mail.o | 29 | obj-$(CONFIG_LEDS_CLEVO_MAIL) += leds-clevo-mail.o |
29 | obj-$(CONFIG_LEDS_HP6XX) += leds-hp6xx.o | 30 | obj-$(CONFIG_LEDS_HP6XX) += leds-hp6xx.o |