From 5392b8c72dfb1f99fae623abc7871a8fbec5d602 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Mon, 25 Feb 2019 23:14:05 +0100 Subject: [PATCH] boards/z1, telosb: remove obsolete stdio_init() calls --- boards/telosb/board.c | 4 ---- boards/z1/board.c | 4 ---- 2 files changed, 8 deletions(-) diff --git a/boards/telosb/board.c b/boards/telosb/board.c index e198dbaa14..555f333bfe 100644 --- a/boards/telosb/board.c +++ b/boards/telosb/board.c @@ -9,7 +9,6 @@ #include "cpu.h" #include "board.h" -#include "stdio_uart.h" void uart_init(void); @@ -122,9 +121,6 @@ void board_init(void) telosb_ports_init(); msp430_init_dco(); - /* initialize STDIO */ - stdio_init(); - /* enable interrupts */ __bis_SR_register(GIE); } diff --git a/boards/z1/board.c b/boards/z1/board.c index 655cf0b0dc..bbef1760e9 100644 --- a/boards/z1/board.c +++ b/boards/z1/board.c @@ -24,7 +24,6 @@ #include "cpu.h" #include "board.h" -#include "stdio_uart.h" static void z1_ports_init(void) { @@ -215,9 +214,6 @@ void board_init(void) /* initializes DCO */ msp430_init_dco(); - /* initialize STDIO */ - stdio_init(); - /* enable interrupts */ __bis_SR_register(GIE); }