|
@@ -687,6 +687,8 @@ static int ti_chars_in_buffer(struct tty_struct *tty)
|
|
|
struct ti_port *tport = usb_get_serial_port_data(port);
|
|
|
int chars = 0;
|
|
|
unsigned long flags;
|
|
|
+ int ret;
|
|
|
+ u8 lsr;
|
|
|
|
|
|
if (tport == NULL)
|
|
|
return 0;
|
|
@@ -695,6 +697,12 @@ static int ti_chars_in_buffer(struct tty_struct *tty)
|
|
|
chars = kfifo_len(&tport->write_fifo);
|
|
|
spin_unlock_irqrestore(&tport->tp_lock, flags);
|
|
|
|
|
|
+ if (!chars) {
|
|
|
+ ret = ti_get_lsr(tport, &lsr);
|
|
|
+ if (!ret && !(lsr & TI_LSR_TX_EMPTY))
|
|
|
+ chars = 1;
|
|
|
+ }
|
|
|
+
|
|
|
dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
|
|
|
return chars;
|
|
|
}
|