uart_stdio:mutex_lock is no longer needed for init

...since the introduction of the new ringbuffer.
This commit is contained in:
Oleg Hahm 2015-09-16 17:14:52 +02:00
parent 26e67b86b5
commit ee8aae7593

View File

@ -70,7 +70,6 @@ void uart_stdio_rx_cb(void *arg, char data)
void uart_stdio_init(void)
{
mutex_lock(&_rx_mutex);
uart_init(STDIO, STDIO_BAUDRATE, uart_stdio_rx_cb, NULL);
}