[PATCH] Nokia RX-51: Fix checking if serial console was enabled
Pali Rohár
pali at kernel.org
Mon Jun 1 00:29:10 CEST 2020
There was incorrect logic for parsing OMAP_TAG_UART atag.
Signed-off-by: Pali Rohár <pali at kernel.org>
---
board/nokia/rx51/rx51.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/nokia/rx51/rx51.c b/board/nokia/rx51/rx51.c
index 2af387edc9..823316ea47 100644
--- a/board/nokia/rx51/rx51.c
+++ b/board/nokia/rx51/rx51.c
@@ -146,7 +146,7 @@ static void reuse_omap_atags(struct tag_omap *t)
}
break;
case OMAP_TAG_UART:
- if (!t->u.uart.enabled_uarts)
+ if (t->u.uart.enabled_uarts)
serial_was_console_enabled = 1;
break;
case OMAP_TAG_SERIAL_CONSOLE:
--
2.20.1
More information about the U-Boot
mailing list