diff mbox

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

Message ID 1317284033-16188-2-git-send-email-simonschwarzcor@gmail.com
State Accepted, archived
Headers show

Commit Message

Simon Schwarz Sept. 29, 2011, 8:13 a.m. UTC
This removes static modifier from images variable in cmd_bootm.c.

Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>

---
V6 changes:
- removed the mention of savebp from commit message
---
 common/cmd_bootm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Wolfgang Denk Oct. 21, 2011, 9:56 p.m. UTC | #1
Dear Simon Schwarz,

In message <1317284033-16188-2-git-send-email-simonschwarzcor@gmail.com> you wrote:
> This removes static modifier from images variable in cmd_bootm.c.
> 
> Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
> 
> ---
> V6 changes:
> - removed the mention of savebp from commit message
> ---
>  common/cmd_bootm.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 8909ee7..cec6e7b 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)