[U-Boot] [PATCH 1/2] board: ecovec: fix debug LEDs pin direction
Baruch Siach
baruch at tkos.co.il
Mon Mar 17 15:14:53 CET 2014
All pins should be output.
Signed-off-by: Baruch Siach <baruch at tkos.co.il>
---
board/renesas/ecovec/ecovec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/renesas/ecovec/ecovec.c b/board/renesas/ecovec/ecovec.c
index fb4acf3641b5..450e38783056 100644
--- a/board/renesas/ecovec/ecovec.c
+++ b/board/renesas/ecovec/ecovec.c
@@ -76,7 +76,7 @@ int board_init(void)
{
/* LED (PTG) */
- outw((inw(PGCR) & ~0xFF) | 0x66, PGCR);
+ outw((inw(PGCR) & ~0xFF) | 0x55, PGCR);
outw((inw(HIZCRA) & ~0x02), HIZCRA);
debug_led(1 << 0);
--
1.9.0
More information about the U-Boot
mailing list