Skip to content
Snippets Groups Projects
Commit da620222 authored by Rob Herring's avatar Rob Herring Committed by Joe Hershberger
Browse files

bootz: un-staticize do_bootz


Make do_bootz available for other functions like do_bootm is.

Signed-off-by: default avatarRob Herring <rob.herring@calxeda.com>
parent 500f304b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -110,6 +110,8 @@ static inline int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
}
#endif
extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc,
char *const argv[]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment