From 8f3fb5984009000df113c86bf830fa44029193ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Fri, 23 Feb 2018 17:14:33 +0100 Subject: [PATCH] kinetis: Align defines in uart.c --- cpu/kinetis/periph/uart.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cpu/kinetis/periph/uart.c b/cpu/kinetis/periph/uart.c index 892701b57e..64bca7cbef 100644 --- a/cpu/kinetis/periph/uart.c +++ b/cpu/kinetis/periph/uart.c @@ -34,17 +34,17 @@ #ifndef KINETIS_HAVE_LPUART #ifdef LPUART0 -#define KINETIS_HAVE_LPUART 1 +#define KINETIS_HAVE_LPUART 1 #else -#define KINETIS_HAVE_LPUART 0 +#define KINETIS_HAVE_LPUART 0 #endif #endif /* KINETIS_HAVE_LPUART */ #ifndef KINETIS_HAVE_UART #ifdef UART0 -#define KINETIS_HAVE_UART 1 +#define KINETIS_HAVE_UART 1 #else -#define KINETIS_HAVE_UART 0 +#define KINETIS_HAVE_UART 0 #endif #endif /* KINETIS_HAVE_LPUART */ @@ -54,7 +54,7 @@ * using the BRFA field in the UART C4 register. */ #ifdef UART_C4_BRFA -#define KINETIS_UART_ADVANCED 1 +#define KINETIS_UART_ADVANCED 1 #endif #endif