diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-11-03 11:36:26 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-11-24 23:40:03 +0100 |
commit | 0008555f4d57c15ad86ee735861ca0d783042f61 (patch) | |
tree | 444fba07e726d2ff4cd0a29e5fe18ef9c85830f1 | |
parent | a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7 (diff) | |
download | u-boot-imx-0008555f4d57c15ad86ee735861ca0d783042f61.zip u-boot-imx-0008555f4d57c15ad86ee735861ca0d783042f61.tar.gz u-boot-imx-0008555f4d57c15ad86ee735861ca0d783042f61.tar.bz2 |
bootm: mark local boot_os[] table static
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | common/cmd_bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 32fd9bb..401bf27 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 |