diff options
author | Grazvydas Ignotas <notasas@gmail.com> | 2009-12-10 17:10:21 +0200 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-01-04 08:48:15 -0600 |
commit | ead39d7aa3ddccb2e374217aeab23bd65cedb762 (patch) | |
tree | 2b112424e3938fef8dd40f1cdeb6cbeac2636a64 /board/timll/devkit8000 | |
parent | 87d93a1ba2ae23550e1370adb7a3b00af0831165 (diff) | |
download | u-boot-imx-ead39d7aa3ddccb2e374217aeab23bd65cedb762.zip u-boot-imx-ead39d7aa3ddccb2e374217aeab23bd65cedb762.tar.gz u-boot-imx-ead39d7aa3ddccb2e374217aeab23bd65cedb762.tar.bz2 |
TWL4030: make LEDs selectable for twl4030_led_init()
Not all boards have both LEDs hooked, so enabling both on
boards with single LED will just waste power. Make it
possible to choose LEDs by adding argument to
twl4030_led_init().
Using this turn on only LEDB for pandora, leave both LEDs
on for all other boards, as it was before this patch.
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Diffstat (limited to 'board/timll/devkit8000')
-rw-r--r-- | board/timll/devkit8000/devkit8000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/timll/devkit8000/devkit8000.c b/board/timll/devkit8000/devkit8000.c index db7d2e2..95afaaa 100644 --- a/board/timll/devkit8000/devkit8000.c +++ b/board/timll/devkit8000/devkit8000.c @@ -76,7 +76,7 @@ int misc_init_r(void) twl4030_power_init(); #ifdef CONFIG_TWL4030_LED - twl4030_led_init(); + twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON); #endif #ifdef CONFIG_DRIVER_DM9000 |