Realtek: serial - line ending fix

One line had a window line ending
pull/6450/head
Martin Kojtal 2018-03-26 08:50:30 +01:00
parent 0a0cc58934
commit f4fc5e6fc3
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ void serial_irq_set(serial_t *obj, SerialIrq irq, uint32_t enable)
if(enable) {
if (irq == RxIrq) {
log_uart_irq_set(&stdio_uart_log, IIR_RX_RDY, enable);
serial_log_irq_en |= SERIAL_RX_IRQ_EN;
serial_log_irq_en |= SERIAL_RX_IRQ_EN;
} else {
log_uart_irq_set(&stdio_uart_log, IIR_THR_EMPTY, enable);
serial_log_irq_en |= SERIAL_TX_IRQ_EN;