mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
bootm: mark local boot_os[] table static
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
a8fa379d47
commit
0008555f4d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue