diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:10 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:06 -0500 |
commit | 9ce2aa171039f1097e2d293235e733cce94cbabb (patch) | |
tree | 4e9bc6a875ea9959c4ec5c5d5a9267997e94b1db /common | |
parent | 62f9b654472888dc46feea74f95edb837f49333a (diff) |
Drop CONFIG_SHOW_ACTIVITY
This feature is not enabled by any board. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/cli_readline.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common/cli_readline.c b/common/cli_readline.c index 99b631720e..ea510ed639 100644 --- a/common/cli_readline.c +++ b/common/cli_readline.c @@ -569,12 +569,6 @@ int cli_readline_into_buffer(const char *const prompt, char *buffer, return -2; /* timed out */ WATCHDOG_RESET(); /* Trigger watchdog, if needed */ -#ifdef CONFIG_SHOW_ACTIVITY - while (!tstc()) { - show_activity(0); - WATCHDOG_RESET(); - } -#endif c = getc(); /* |