mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-19 21:01:08 +07:00
[PATCH] Serial: Bugs are not capabilities
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
55d3b282b9
commit
67f7654ea1
@ -1037,7 +1037,7 @@ static void serial8250_start_tx(struct uart_port *port, unsigned int tty_start)
|
|||||||
up->ier |= UART_IER_THRI;
|
up->ier |= UART_IER_THRI;
|
||||||
serial_out(up, UART_IER, up->ier);
|
serial_out(up, UART_IER, up->ier);
|
||||||
|
|
||||||
if (up->capabilities & UART_BUG_TXEN) {
|
if (up->bugs & UART_BUG_TXEN) {
|
||||||
unsigned char lsr, iir;
|
unsigned char lsr, iir;
|
||||||
lsr = serial_in(up, UART_LSR);
|
lsr = serial_in(up, UART_LSR);
|
||||||
iir = serial_in(up, UART_IIR);
|
iir = serial_in(up, UART_IIR);
|
||||||
@ -1564,13 +1564,13 @@ static int serial8250_startup(struct uart_port *port)
|
|||||||
serial_outp(up, UART_IER, 0);
|
serial_outp(up, UART_IER, 0);
|
||||||
|
|
||||||
if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
|
if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
|
||||||
if (!(up->capabilities & UART_BUG_TXEN)) {
|
if (!(up->bugs & UART_BUG_TXEN)) {
|
||||||
up->capabilities |= UART_BUG_TXEN;
|
up->bugs |= UART_BUG_TXEN;
|
||||||
pr_debug("ttyS%d - enabling bad tx status workarounds\n",
|
pr_debug("ttyS%d - enabling bad tx status workarounds\n",
|
||||||
port->line);
|
port->line);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
up->capabilities &= ~UART_BUG_TXEN;
|
up->bugs &= ~UART_BUG_TXEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&up->port.lock, flags);
|
spin_unlock_irqrestore(&up->port.lock, flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user