Skip to content
Snippets Groups Projects
Commit 30eae26b authored by Stefan Roese's avatar Stefan Roese Committed by Tom Rini
Browse files

common: cli: Fix typo CONFIG_CMDINE -> CONFIG_CMDLINE


Patch f8bb6964 (Drop command-processing code when CONFIG_CMDLINE is
disabled) introduced a small typo. This patch fixes it and unbreaks
all boards again that don't have the Hush parser enabled.

Signed-off-by: default avatarStefan Roese <sr@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
parent 563d8d93
No related branches found
No related tags found
No related merge requests found
...@@ -218,7 +218,7 @@ void cli_loop(void) ...@@ -218,7 +218,7 @@ void cli_loop(void)
parse_file_outer(); parse_file_outer();
/* This point is never reached */ /* This point is never reached */
for (;;); for (;;);
#elif defined(CONFIG_CMDINE) #elif defined(CONFIG_CMDLINE)
cli_simple_loop(); cli_simple_loop();
#else #else
printf("## U-Boot command line is disabled. Please enable CONFIG_CMDLINE\n"); printf("## U-Boot command line is disabled. Please enable CONFIG_CMDLINE\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment