diff options
author | Tom Rini <trini@ti.com> | 2014-03-31 08:29:35 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-31 08:29:35 -0400 |
commit | 8a7d486d22a4c60e78e2c82d3023aab3103bf194 (patch) | |
tree | e096e12d0dc4006cc1c76ce49f702b787defabf3 | |
parent | 462d1883f78353c5ed9d09de45a9b5b2422793a3 (diff) | |
parent | 82778e92c2816036ed79cdfb47e6eb6f6487a3f9 (diff) | |
download | u-boot-imx-8a7d486d22a4c60e78e2c82d3023aab3103bf194.zip u-boot-imx-8a7d486d22a4c60e78e2c82d3023aab3103bf194.tar.gz u-boot-imx-8a7d486d22a4c60e78e2c82d3023aab3103bf194.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-sh
-rw-r--r-- | board/renesas/ecovec/ecovec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/renesas/ecovec/ecovec.c b/board/renesas/ecovec/ecovec.c index fb4acf3..2804d91 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); @@ -97,7 +97,7 @@ int board_init(void) /* USB host */ outw((inw(PBCR) & ~0x300) | 0x100, PBCR); outb((inb(PBDR) & ~0x10) | 0x10, PBDR); - outl(inl(MSTPCR2) & 0x100000, MSTPCR2); + outl(inl(MSTPCR2) & ~0x100000, MSTPCR2); outw(0x0600, UPONCR0); debug_led(1 << 3); |