From: Mike Frysinger Date: Tue, 3 Nov 2009 16:36:26 +0000 (-0500) Subject: bootm: mark local boot_os[] table static X-Git-Tag: v2009.11-rc2~41 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=0008555f4d57c15ad86ee735861ca0d783042f61 bootm: mark local boot_os[] table static Signed-off-by: Mike Frysinger --- diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 32fd9bb3f3..401bf27d15 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -129,7 +129,7 @@ int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); static boot_os_fn do_bootm_integrity; #endif -boot_os_fn * boot_os[] = { +static boot_os_fn *boot_os[] = { #ifdef CONFIG_BOOTM_LINUX [IH_OS_LINUX] = do_bootm_linux, #endif