diff mbox

[U-Boot,V4,1/6] removed static from images in cmd_bootm.c

Message ID 1314960636-19279-2-git-send-email-simonschwarzcor@gmail.com
State Accepted, archived
Commit dee17768d4f0490650cb5f28e2366fe0f690fa06
Headers show

Commit Message

Simon Schwarz Sept. 2, 2011, 10:50 a.m. UTC
This removes static modifier from cmd_bootm.c to make it public and usable
by savebp

Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
---
 common/cmd_bootm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 1966da4..c642299 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)