diff options
author | Tom Rini <trini@ti.com> | 2013-10-09 10:06:40 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-09 10:06:40 -0400 |
commit | 3be2bdf5dc69b3142c1162a59bc67191c9077567 (patch) | |
tree | ece764111ded1f96162f074d3c3736d6e2d5c251 /board/keymile/km83xx | |
parent | df166cc9f400d00c80367823d95bc3485bf02dba (diff) | |
parent | 283857dac752d4253cd211eb94d3201d2248e173 (diff) |
Merge branch 'next' of git://git.denx.de/u-boot-mpc83xx
Diffstat (limited to 'board/keymile/km83xx')
-rw-r--r-- | board/keymile/km83xx/km83xx.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index cd861c9f125..76291a747c6 100644 --- a/board/keymile/km83xx/km83xx.c +++ b/board/keymile/km83xx/km83xx.c @@ -28,7 +28,7 @@ #include "../common/common.h" -const qe_iop_conf_t qe_iop_conf_tab[] = { +static const qe_iop_conf_t qe_iop_conf_tab[] = { /* port pin dir open_drain assign */ #if defined(CONFIG_MPC8360) /* MDIO */ @@ -225,6 +225,11 @@ static struct mv88e_sw_reg extsw_conf[] = { { PORT(5), 0x1A, 0xADB1 }, /* port 6, unused, this port has no phy */ { PORT(6), PORT_CTRL, PORT_DIS }, + /* + * Errata Fix: 1.9V Output from Internal 1.8V Regulator, + * acc . MV-S300889-00D.pdf , clause 4.5 + */ + { PORT(5), 0x1A, 0xADB1 }, }; #endif @@ -277,7 +282,7 @@ int last_stage_init(void) return 0; } -int fixed_sdram(void) +static int fixed_sdram(void) { immap_t *im = (immap_t *)CONFIG_SYS_IMMR; u32 msize = 0; |