[U-Boot] [PATCH 4/4] cli: handle getch error
Patrick Delaunay
patrick.delaunay at st.com
Fri Aug 3 11:38:45 UTC 2018
Handle getch error (when getch return 0x0) to avoid display issue
in the console.
Signed-off-by: Patrick Delaunay <patrick.delaunay at st.com>
---
common/cli_readline.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/common/cli_readline.c b/common/cli_readline.c
index 60a232b..99b6317 100644
--- a/common/cli_readline.c
+++ b/common/cli_readline.c
@@ -273,6 +273,10 @@ static int cread_line(const char *const prompt, char *buf, unsigned int *len,
ichar = getcmd_getch();
+ /* ichar=0x0 when error occurs in U-Boot getc */
+ if (!ichar)
+ continue;
+
if ((ichar == '\n') || (ichar == '\r')) {
putc('\n');
break;
--
2.7.4
More information about the U-Boot
mailing list