From dee17768d4f0490650cb5f28e2366fe0f690fa06 Mon Sep 17 00:00:00 2001
From: Simon Schwarz <simonschwarzcor@googlemail.com>
Date: Fri, 2 Sep 2011 00:50:31 +0000
Subject: [PATCH] removed static from images in cmd_bootm.c

This removes static modifier from images variable in cmd_bootm.c.

Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
---
 common/cmd_bootm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index ece1b9a1e2..17dfadbf9f 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)
-- 
2.39.5