diff options
author | Simon Glass <sjg@chromium.org> | 2012-02-14 19:59:21 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-06 21:09:26 +0100 |
commit | 5307153236caaf2304e578c148e00a4b65cb8604 (patch) | |
tree | 6c15ac7b41232fd580a2a2ff75ee5bdee76a20e7 /include | |
parent | 009dde1955583e306cf904c864068f3acb0db499 (diff) | |
download | u-boot-imx-5307153236caaf2304e578c148e00a4b65cb8604.zip u-boot-imx-5307153236caaf2304e578c148e00a4b65cb8604.tar.gz u-boot-imx-5307153236caaf2304e578c148e00a4b65cb8604.tar.bz2 |
Stop using builtin_run_command()
Boards can select either the 'built-in' parser or the hush parser. We
should not call builtin_run_command() if we are using the hush parser.
We use run_command() instead, since it knows how to call the correct
parser.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index e8b62a9..0bda049 100644 --- a/include/common.h +++ b/include/common.h @@ -260,7 +260,6 @@ int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen); /* common/main.c */ void main_loop (void); -int builtin_run_command(const char *cmd, int flag); int run_command(const char *cmd, int flag); int readline (const char *const prompt); int readline_into_buffer(const char *const prompt, char *buffer, |