diff options
| author | Simon Schwarz <simonschwarzcor@googlemail.com> | 2011-09-02 00:50:31 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-21 23:56:17 +0200 | 
| commit | dee17768d4f0490650cb5f28e2366fe0f690fa06 (patch) | |
| tree | 86d8ff241c1b5228c492a92b3c45578a49c97b2d | |
| parent | 02aff558f4b68927c719a33bee8d13d325d105fb (diff) | |
| download | olio-uboot-2014.01-dee17768d4f0490650cb5f28e2366fe0f690fa06.tar.xz olio-uboot-2014.01-dee17768d4f0490650cb5f28e2366fe0f690fa06.zip | |
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>
| -rw-r--r-- | common/cmd_bootm.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index ece1b9a1e..17dfadbf9 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) |