From e071beab0807ecb9322028c5ab6b3b87a677d634 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Tue, 5 Jan 2016 12:05:11 +0100 Subject: [PATCH] sys/uart_stdio: cleanup - removed duplicate include - changed default device from '0' to UART_DEV(0) --- sys/uart_stdio/uart_stdio.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sys/uart_stdio/uart_stdio.c b/sys/uart_stdio/uart_stdio.c index 0bb854df83..3564e42add 100644 --- a/sys/uart_stdio/uart_stdio.c +++ b/sys/uart_stdio/uart_stdio.c @@ -25,14 +25,11 @@ #include -#include "cpu_conf.h" #include "tsrb.h" #include "thread.h" #include "mutex.h" #include "irq.h" -#include "periph/uart.h" - #include "board.h" #include "periph/uart.h" @@ -40,7 +37,7 @@ #include "debug.h" #ifndef STDIO -#define STDIO (0) +#define STDIO UART_DEV(0) #endif #ifndef STDIO_BAUDRATE