1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-18 08:23:24 +02:00

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

@@ -1865,11 +1865,12 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo, int var_is_set)
} else {
/*
* No need to worry for buffer overflow here in
* this function; readline() maxes out at CFG_CBSIZE
* this function; cli_readline() maxes out at
* CFG_CBSIZE
*/
readline_into_buffer(prompt, buffer, 0);
cli_readline_into_buffer(prompt, buffer, 0);
}
argc = parse_line(buffer, argv);
argc = cli_simple_parse_line(buffer, argv);
if (argc == 0)
continue;