mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +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:
@@ -1007,9 +1007,9 @@ static void get_user_input(struct in_str *i)
|
||||
#endif
|
||||
i->__promptme = 1;
|
||||
if (i->promptmode == 1) {
|
||||
n = readline(CONFIG_SYS_PROMPT);
|
||||
n = cli_readline(CONFIG_SYS_PROMPT);
|
||||
} else {
|
||||
n = readline(CONFIG_SYS_PROMPT_HUSH_PS2);
|
||||
n = cli_readline(CONFIG_SYS_PROMPT_HUSH_PS2);
|
||||
}
|
||||
#ifdef CONFIG_BOOT_RETRY_TIME
|
||||
if (n == -2) {
|
||||
|
Reference in New Issue
Block a user