diff options
author | Rob Herring <rob.herring@calxeda.com> | 2012-12-02 21:00:23 -0600 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2013-06-24 19:07:33 -0500 |
commit | da620222f89162af2b43f868f1d6184533166104 (patch) | |
tree | 06972e042463cdda9c5d455bc178a830fd98480e /common/cmd_bootm.c | |
parent | 500f304b6bb8eeb369087a91da2f58a28bf04941 (diff) | |
download | u-boot-imx-da620222f89162af2b43f868f1d6184533166104.zip u-boot-imx-da620222f89162af2b43f868f1d6184533166104.tar.gz u-boot-imx-da620222f89162af2b43f868f1d6184533166104.tar.bz2 |
bootz: un-staticize do_bootz
Make do_bootz available for other functions like do_bootm is.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'common/cmd_bootm.c')
-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 05130b6..e452fca 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1707,7 +1707,7 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, return 0; } -static int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { bootm_headers_t images; |