diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-20 03:36:26 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-11-28 21:46:47 +0100 |
commit | 7842fb7c4f5be961c7aa9091dc8c760683b1377c (patch) | |
tree | 949c792e9198b6c6dc6de956a417530dd3988de3 | |
parent | 36ebb78779cb08b48672e0fa5cd891199cc0ee23 (diff) | |
download | u-boot-imx-7842fb7c4f5be961c7aa9091dc8c760683b1377c.zip u-boot-imx-7842fb7c4f5be961c7aa9091dc8c760683b1377c.tar.gz u-boot-imx-7842fb7c4f5be961c7aa9091dc8c760683b1377c.tar.bz2 |
do_bootd: unify duplicate prototypes
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | common/hush.c | 4 | ||||
-rw-r--r-- | common/main.c | 2 | ||||
-rw-r--r-- | include/command.h | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/common/hush.c b/common/hush.c index 2188fd4..0f101bf 100644 --- a/common/hush.c +++ b/common/hush.c @@ -93,8 +93,6 @@ #include <common.h> /* readline */ #include <hush.h> #include <command.h> /* find_cmd */ -/*cmd_boot.c*/ -extern int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); /* do_bootd */ #endif #ifndef __U_BOOT__ #include <ctype.h> /* isalpha, isdigit */ @@ -1681,8 +1679,6 @@ static int run_pipe_real(struct pipe *pi) } else { int rcode; #if defined(CONFIG_CMD_BOOTD) - extern int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); - /* avoid "bootd" recursion */ if (cmdtp->cmd == do_bootd) { if (flag & CMD_FLAG_BOOTD) { diff --git a/common/main.c b/common/main.c index d97ccd7..bbb208b 100644 --- a/common/main.c +++ b/common/main.c @@ -54,8 +54,6 @@ void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progre extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); /* for do_reset() prototype */ #endif -extern int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); - #if defined(CONFIG_UPDATE_TFTP) void update_tftp (void); #endif /* CONFIG_UPDATE_TFTP */ diff --git a/include/command.h b/include/command.h index 915be57..e98332e 100644 --- a/include/command.h +++ b/include/command.h @@ -95,6 +95,9 @@ extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int * extern int cmd_get_data_size(char* arg, int default_size); #endif +#ifdef CONFIG_CMD_BOOTD +extern int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); +#endif extern int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); #endif /* __ASSEMBLY__ */ |