diff options
author | Baruch Siach | 2014-03-17 16:14:53 +0200 |
---|---|---|
committer | Nobuhiro Iwamatsu | 2014-03-31 10:48:02 +0900 |
commit | f09d04aec3c2eeb89bcc876ba82f8b2940150d87 (patch) | |
tree | a49bef395b3f0a26f17a1e659dee1ccd3ee74997 /board/renesas/ecovec | |
parent | 0b2da7e209f4110b7c81d578336a10330e4a4404 (diff) |
board: ecovec: fix debug LEDs pin direction
All pins should be output.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas/ecovec')
-rw-r--r-- | board/renesas/ecovec/ecovec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/renesas/ecovec/ecovec.c b/board/renesas/ecovec/ecovec.c index fb4acf3641b..450e3878305 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); |