Back out an error introduced with commit 02c33f66c5a8be774034cd40e4125e9323c7b4d8. Causes an infinite loop in up_lowputc(). From Max Neklyudov.

This commit is contained in:
Max Neklyudov 2015-06-22 06:19:45 -06:00 committed by Gregory Nutt
parent e615c848fe
commit 48dbc5c72b

View File

@ -299,6 +299,8 @@ void up_lowputc(char ch)
/* Send the character */
putreg32((uint32_t)ch, SAM_CONSOLE_BASE + SAM_UART_THR_OFFSET);
irqrestore(flags);
return;
}
irqrestore(flags);