Skip to content

Commit b98d13c

Browse files
geon-jeongBryan Wu
authored andcommitted
leds: Add new LED driver for lm355x chips
This driver is a general version for LM355x,lm3554 and lm3556,led chips of TI. LM3554 : The LM3554 is a 2 MHz fixed-frequency synchronous boost converter with 1.2A dual high side led drivers. Datasheet: www.ti.com/lit/ds/symlink/lm3554.pdf LM3556 : The LM3556 is a 4 MHz fixed-frequency synchronous boost converter plus 1.5A constant current driver for a high-current white LED. Datasheet: www.national.com/ds/LM/LM3556.pdf ([email protected]: use flush_work() to replace flush_work_sync() which is deprecated) Signed-off-by: G.Shark Jeong <[email protected]> Signed-off-by: Bryan Wu <[email protected]>
1 parent 56a1e9a commit b98d13c

File tree

6 files changed

+643
-567
lines changed

6 files changed

+643
-567
lines changed

drivers/leds/Kconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,13 +423,13 @@ config LEDS_MAX8997
423423
This option enables support for on-chip LED drivers on
424424
MAXIM MAX8997 PMIC.
425425

426-
config LEDS_LM3556
427-
tristate "LED support for LM3556 Chip"
426+
config LEDS_LM355x
427+
tristate "LED support for LM355x Chips, LM3554 and LM3556"
428428
depends on LEDS_CLASS && I2C
429429
select REGMAP_I2C
430430
help
431-
This option enables support for LEDs connected to LM3556.
432-
LM3556 includes Torch, Flash and Indicator functions.
431+
This option enables support for LEDs connected to LM355x.
432+
LM355x includes Torch, Flash and Indicator functions.
433433

434434
config LEDS_OT200
435435
tristate "LED support for the Bachmann OT200"

drivers/leds/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ obj-$(CONFIG_LEDS_NETXBIG) += leds-netxbig.o
4848
obj-$(CONFIG_LEDS_ASIC3) += leds-asic3.o
4949
obj-$(CONFIG_LEDS_RENESAS_TPU) += leds-renesas-tpu.o
5050
obj-$(CONFIG_LEDS_MAX8997) += leds-max8997.o
51-
obj-$(CONFIG_LEDS_LM3556) += leds-lm3556.o
51+
obj-$(CONFIG_LEDS_LM355x) += leds-lm355x.o
5252
obj-$(CONFIG_LEDS_BLINKM) += leds-blinkm.o
5353

5454
# LED SPI Drivers

0 commit comments

Comments
 (0)