mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
serial: max310x: Fix tx_empty() callback
Function max310x_tx_empty() accesses the IRQSTS register, which is cleared by IC when reading, so if there is an interrupt status, we will lose it. This patch implement the transmitter check only by the current FIFO level. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a88c4736ea
commit
a8da3c7873
@ -833,12 +833,9 @@ static void max310x_wq_proc(struct work_struct *ws)
|
|||||||
|
|
||||||
static unsigned int max310x_tx_empty(struct uart_port *port)
|
static unsigned int max310x_tx_empty(struct uart_port *port)
|
||||||
{
|
{
|
||||||
unsigned int lvl, sts;
|
u8 lvl = max310x_port_read(port, MAX310X_TXFIFOLVL_REG);
|
||||||
|
|
||||||
lvl = max310x_port_read(port, MAX310X_TXFIFOLVL_REG);
|
return lvl ? 0 : TIOCSER_TEMT;
|
||||||
sts = max310x_port_read(port, MAX310X_IRQSTS_REG);
|
|
||||||
|
|
||||||
return ((sts & MAX310X_IRQ_TXEMPTY_BIT) && !lvl) ? TIOCSER_TEMT : 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int max310x_get_mctrl(struct uart_port *port)
|
static unsigned int max310x_get_mctrl(struct uart_port *port)
|
||||||
|
Loading…
Reference in New Issue
Block a user