diff options
author | Simon Glass <sjg@chromium.org> | 2012-02-14 19:59:19 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-06 21:09:18 +0100 |
commit | f47360a74ec05c078960bf6f8c10a7f426c7d11d (patch) | |
tree | da8f3b450fa39aa0ad3966da7c2e04f243a30da7 /common/cmd_source.c | |
parent | 79714c1e26229985c2ed9dd5853b55732cb21f2c (diff) | |
download | u-boot-f47360a74ec05c078960bf6f8c10a7f426c7d11d.tar.gz u-boot-f47360a74ec05c078960bf6f8c10a7f426c7d11d.tar.xz u-boot-f47360a74ec05c078960bf6f8c10a7f426c7d11d.zip |
Rename run_command() to builtin_run_command()
The current run_command() is only one of the parsing options - the other
is hush. We should not call run_command() when the hush parser is being
used. So we rename this function to better explain its purpose.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'common/cmd_source.c')
-rw-r--r-- | common/cmd_source.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_source.c b/common/cmd_source.c index 16a627a3dd..481241cfdf 100644 --- a/common/cmd_source.c +++ b/common/cmd_source.c @@ -179,7 +179,7 @@ source (ulong addr, const char *fit_uname) if (*line) { debug ("** exec: \"%s\"\n", line); - if (run_command (line, 0) < 0) { + if (builtin_run_command(line, 0) < 0) { rcode = 1; break; } @@ -189,7 +189,7 @@ source (ulong addr, const char *fit_uname) ++next; } if (rcode == 0 && *line) - rcode = (run_command(line, 0) >= 0); + rcode = (builtin_run_command(line, 0) >= 0); } #endif free (cmd); |