|
@@ -154,10 +154,9 @@ static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id)
|
|
|
port->x_char = 0;
|
|
|
return IRQ_HANDLED;
|
|
|
}
|
|
|
- if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
|
|
|
- clps711xuart_stop_tx(port);
|
|
|
- return IRQ_HANDLED;
|
|
|
- }
|
|
|
+
|
|
|
+ if (uart_circ_empty(xmit) || uart_tx_stopped(port))
|
|
|
+ goto disable_tx_irq;
|
|
|
|
|
|
count = port->fifosize >> 1;
|
|
|
do {
|
|
@@ -171,8 +170,11 @@ static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id)
|
|
|
if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
|
|
|
uart_write_wakeup(port);
|
|
|
|
|
|
- if (uart_circ_empty(xmit))
|
|
|
- clps711xuart_stop_tx(port);
|
|
|
+ if (uart_circ_empty(xmit)) {
|
|
|
+ disable_tx_irq:
|
|
|
+ disable_irq_nosync(TX_IRQ(port));
|
|
|
+ tx_enabled(port) = 0;
|
|
|
+ }
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
}
|