diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-11-26 23:44:18 +0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-02-26 17:52:12 +0400 |
commit | d1cb3ecf327066137fb6245b13030cde60241dd6 (patch) | |
tree | f32542da5d431a58963c768c21ef71a5c45b1e0a /arch/arm/plat-versatile/leds.c | |
parent | cfbf8d4857c26a8a307fb7cd258074c9dcd8c691 (diff) | |
download | linux-d1cb3ecf327066137fb6245b13030cde60241dd6.tar.xz |
ARM: plat-versatile: LEDs initialise to off state
There really is no excuse to turn on all 8 LEDs at boot time, such
that on the Versatile PB/926 we end up with 6 LEDs on continuously
and forever. We're not a christmas decoration!
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/plat-versatile/leds.c')
-rw-r--r-- | arch/arm/plat-versatile/leds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-versatile/leds.c b/arch/arm/plat-versatile/leds.c index d2490d00b46c..2018f307f32e 100644 --- a/arch/arm/plat-versatile/leds.c +++ b/arch/arm/plat-versatile/leds.c @@ -72,8 +72,8 @@ static int __init versatile_leds_init(void) { int i; - /* All ON */ - writel(0xff, LEDREG); + /* All off */ + writel(0, LEDREG); for (i = 0; i < ARRAY_SIZE(versatile_leds); i++) { struct versatile_led *led; |