From fa775661e7d28d25880be0e495d6fe409ac1e475 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 3 May 2018 15:23:38 -0600 Subject: [PATCH] And additional change that is needed with the previous commit. --- arch/arm/include/kinetis/kinetis_lpuart.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/arch/arm/include/kinetis/kinetis_lpuart.h b/arch/arm/include/kinetis/kinetis_lpuart.h index c604ca9c65..9c9ff70ac7 100644 --- a/arch/arm/include/kinetis/kinetis_lpuart.h +++ b/arch/arm/include/kinetis/kinetis_lpuart.h @@ -65,6 +65,7 @@ /* LPUART Register Configuration * + * KINETIS_LPUART_HAS_MODIR_RTSWATER - SoC has MODIR[RTSWATER] * KINETIS_LPUART_HAS_FIFO - SoC has FIFO Register * KINETIS_LPUART_HAS_WATER - SoC has WATER Register */ @@ -143,6 +144,7 @@ /* LPUART Register Configuration */ +# define KINETIS_LPUART_HAS_MODIR_RTSWATER 1 /* SoC has MODIR[RTSWATER] */ # define KINETIS_LPUART_HAS_FIFO 1 /* SoC has FIFO Register */ # define KINETIS_LPUART_HAS_WATER 1 /* SoC has WATER Register */ @@ -260,8 +262,9 @@ /* LPUART Register Configuration */ -# undef KINETIS_LPUART_HAS_FIFO /* SoC does not have FIFO Register */ -# undef KINETIS_LPUART_HAS_WATER /* SoC does not have WATER Register */ +# undef KINETIS_LPUART_HAS_MODIR_RTSWATER /* SoC does not have MODIR[RTSWATER] */ +# undef KINETIS_LPUART_HAS_FIFO /* SoC does not have FIFO Register */ +# undef KINETIS_LPUART_HAS_WATER /* SoC does not have WATER Register */ #endif