|
@@ -399,7 +399,6 @@ static inline void neo_parse_isr(struct dgnc_board *brd, uint port)
|
|
|
|
|
|
if (isr & (UART_17158_IIR_RDI_TIMEOUT | UART_IIR_RDI)) {
|
|
|
/* Read data from uart -> queue */
|
|
|
- ch->ch_intr_rx++;
|
|
|
neo_copy_data_from_uart_to_queue(ch);
|
|
|
|
|
|
/* Call our tty layer to enforce queue flow control if needed. */
|
|
@@ -512,7 +511,6 @@ static inline void neo_parse_lsr(struct dgnc_board *brd, uint port)
|
|
|
ch->ch_cached_lsr |= linestatus;
|
|
|
|
|
|
if (ch->ch_cached_lsr & UART_LSR_DR) {
|
|
|
- ch->ch_intr_rx++;
|
|
|
/* Read data from uart -> queue */
|
|
|
neo_copy_data_from_uart_to_queue(ch);
|
|
|
spin_lock_irqsave(&ch->ch_lock, flags);
|