]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
removed static from images in cmd_bootm.c
authorSimon Schwarz <simonschwarzcor@googlemail.com>
Fri, 2 Sep 2011 00:50:31 +0000 (00:50 +0000)
committerWolfgang Denk <wd@denx.de>
Fri, 21 Oct 2011 21:56:17 +0000 (23:56 +0200)
This removes static modifier from images variable in cmd_bootm.c.

Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
common/cmd_bootm.c

index ece1b9a1e2563ef85ee665972f437064c88f1539..17dfadbf9f5c45f51c896a3afa80b4e9e81b72bc 100644 (file)
@@ -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)