Add cli_ prefix to readline functions

This makes it clear where the code resides.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2014-04-10 20:01:27 -06:00 committed by Tom Rini
parent 6493ccc7cf
commit e1bf824dfd
18 changed files with 67 additions and 63 deletions

View file

@ -19,7 +19,7 @@
debug_cond(DEBUG_PARSER, fmt, ##args)
int parse_line(char *line, char *argv[])
int cli_simple_parse_line(char *line, char *argv[])
{
int nargs = 0;
@ -238,7 +238,7 @@ int cli_simple_run_command(const char *cmd, int flag)
process_macros(token, finaltoken);
/* Extract arguments */
argc = parse_line(finaltoken, argv);
argc = cli_simple_parse_line(finaltoken, argv);
if (argc == 0) {
rc = -1; /* no command at all */
continue;
@ -272,7 +272,7 @@ void cli_loop(void)
reset_cmd_timeout();
}
#endif
len = readline(CONFIG_SYS_PROMPT);
len = cli_readline(CONFIG_SYS_PROMPT);
flag = 0; /* assume no special flags for now */
if (len > 0)