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/common/common.c | |
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/common/common.c')
-rw-r--r-- | board/keymile/common/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index ef93ed3f66..544784a7d9 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -242,7 +242,7 @@ U_BOOT_CMD(km_setboardid, 1, 0, do_setboardid, "setboardid", "read out bid and " * application and in the init scripts (?) * return 0 in case of match, 1 if not match or error */ -int do_checkboardidhwk(cmd_tbl_t *cmdtp, int flag, int argc, +static int do_checkboardidhwk(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) { unsigned long ivmbid = 0, ivmhwkey = 0; @@ -383,7 +383,7 @@ U_BOOT_CMD(km_checkbidhwk, 2, 0, do_checkboardidhwk, * if the testpin of the board is asserted, return 1 * * else return 0 */ -int do_checktestboot(cmd_tbl_t *cmdtp, int flag, int argc, +static int do_checktestboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) { int testpin = 0; |