diff options
author | Jett Rink <jettrink@chromium.org> | 2018-03-05 10:46:06 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2018-03-06 09:59:19 -0800 |
commit | 9ea3cbecb8d3fca58baf4aff8d7e97480fe25860 (patch) | |
tree | 8beda6b42d6854631f5d5bad0216aca1b775f6f3 /test | |
parent | 3b10e08bc341367f19de19946cbd21c36b4d95be (diff) | |
download | chrome-ec-9ea3cbecb8d3fca58baf4aff8d7e97480fe25860.tar.gz |
npcx: Conforming CONFIG_UART_HOST define to match intention
The CONFIG_UART_HOST is supposed to be defined to the index of the UART we
want to use. It is not supposed to be defined as a boolean. Updated npcx
and all incorrect uses.
BRANCH=none
BUG=none
TEST=Added the following diff to ensure that everything still built:
diff --git a/chip/npcx/lpc.c b/chip/npcx/lpc.c
index 446baa842..826233744 100644
--- a/chip/npcx/lpc.c
+++ b/chip/npcx/lpc.c
@@ -897,6 +897,9 @@ static void lpc_init(void)
/* Initialize Hardware for UART Host */
#ifdef CONFIG_UART_HOST
+#if !CONFIG_UART_HOST
+#error "Fix me"
+#endif
/* Init COMx LPC UART */
/* FMCLK have to using 50MHz */
NPCX_DEVALT(0xB) = 0xFF;
Change-Id: Ia46c7cb86c6040a5c75dddf23d5ccd8e33210581
Signed-off-by: Jett Rink <jettrink@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/949308
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'test')
0 files changed, 0 insertions, 0 deletions