diff options
author | Holger Brunck <holger.brunck@keymile.com> | 2013-05-06 15:02:40 +0200 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2013-05-21 18:04:33 -0500 |
commit | 283857dac752d4253cd211eb94d3201d2248e173 (patch) | |
tree | 7d2f3ce8c5c7f9d9e204d233d33c596a28daabe4 /board/keymile/km83xx | |
parent | 1ca899c75c7af49710cc897c915015b093df1429 (diff) |
powerpc/83xx/km: make local functions and structs static
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board/keymile/km83xx')
-rw-r--r-- | board/keymile/km83xx/km83xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |