]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
board: ecovec: fix debug LEDs pin direction
authorBaruch Siach <baruch@tkos.co.il>
Mon, 17 Mar 2014 14:14:53 +0000 (16:14 +0200)
committerNobuhiro Iwamatsu <iwamatsu@nigauri.org>
Mon, 31 Mar 2014 01:48:02 +0000 (10:48 +0900)
All pins should be output.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
board/renesas/ecovec/ecovec.c

index fb4acf3641b52fbb3445facb8f575fb573482d4f..450e38783056bc29dd51e30517d515a8863f2d98 100644 (file)
@@ -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);