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 /common/cmd_bootm.c | |
| parent | a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7 (diff) | |
| download | olio-uboot-2014.01-0008555f4d57c15ad86ee735861ca0d783042f61.tar.xz olio-uboot-2014.01-0008555f4d57c15ad86ee735861ca0d783042f61.zip | |
bootm: mark local boot_os[] table static
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'common/cmd_bootm.c')
| -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 32fd9bb3f..401bf27d1 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 |