|
@@ -1520,7 +1520,7 @@ int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
|
|
status = serial8250_rx_chars(up, status);
|
|
status = serial8250_rx_chars(up, status);
|
|
}
|
|
}
|
|
serial8250_modem_status(up);
|
|
serial8250_modem_status(up);
|
|
- if (status & UART_LSR_THRE)
|
|
|
|
|
|
+ if (!up->dma && (status & UART_LSR_THRE))
|
|
serial8250_tx_chars(up);
|
|
serial8250_tx_chars(up);
|
|
|
|
|
|
spin_unlock_irqrestore(&port->lock, flags);
|
|
spin_unlock_irqrestore(&port->lock, flags);
|