From: Simon Schwarz Date: Fri, 2 Sep 2011 00:50:31 +0000 (+0000) Subject: removed static from images in cmd_bootm.c X-Git-Tag: v2011.12-rc1~509 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dee17768d4f0490650cb5f28e2366fe0f690fa06;p=kernel%2Fu-boot.git removed static from images in cmd_bootm.c This removes static modifier from images variable in cmd_bootm.c. Signed-off-by: Simon Schwarz --- diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index ece1b9a..17dfadb 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -156,7 +156,7 @@ static boot_os_fn *boot_os[] = { #endif }; -static bootm_headers_t images; /* pointers to os/initrd/fdt images */ +bootm_headers_t images; /* pointers to os/initrd/fdt images */ /* Allow for arch specific config before we boot */ void __arch_preboot_os(void)