From 1ca899c75c7af49710cc897c915015b093df1429 Mon Sep 17 00:00:00 2001 From: Holger Brunck Date: Mon, 6 May 2013 15:02:39 +0200 Subject: powerpc/83xx/km: MV88e6122 errata fix for 1.9V Errata Fix: 1.9V Output from Internal 1.8V Regulator, acc. MV-S300889-00D.pdf , clause 4.5 Signed-off-by: Holger Brunck Signed-off-by: Kim Phillips --- board/keymile/km83xx/km83xx.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'board/keymile/km83xx') diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index faaa39bc20..71b9e96615 100644 --- a/board/keymile/km83xx/km83xx.c +++ b/board/keymile/km83xx/km83xx.c @@ -243,6 +243,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 -- cgit v1.2.1 From 283857dac752d4253cd211eb94d3201d2248e173 Mon Sep 17 00:00:00 2001 From: Holger Brunck Date: Mon, 6 May 2013 15:02:40 +0200 Subject: powerpc/83xx/km: make local functions and structs static Signed-off-by: Holger Brunck Signed-off-by: Kim Phillips --- board/keymile/km83xx/km83xx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'board/keymile/km83xx') diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index 71b9e96615..d9f718eb30 100644 --- a/board/keymile/km83xx/km83xx.c +++ b/board/keymile/km83xx/km83xx.c @@ -31,7 +31,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 */ @@ -300,7 +300,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; -- cgit v1.2.1