|
@@ -96,7 +96,8 @@ static void dw8250_serial_out(struct uart_port *p, int offset, int value)
|
|
|
if (offset == UART_LCR) {
|
|
|
int tries = 1000;
|
|
|
while (tries--) {
|
|
|
- if (value == p->serial_in(p, UART_LCR))
|
|
|
+ unsigned int lcr = p->serial_in(p, UART_LCR);
|
|
|
+ if ((value & ~UART_LCR_SPAR) == (lcr & ~UART_LCR_SPAR))
|
|
|
return;
|
|
|
dw8250_force_idle(p);
|
|
|
writeb(value, p->membase + (UART_LCR << p->regshift));
|
|
@@ -132,7 +133,8 @@ static void dw8250_serial_out32(struct uart_port *p, int offset, int value)
|
|
|
if (offset == UART_LCR) {
|
|
|
int tries = 1000;
|
|
|
while (tries--) {
|
|
|
- if (value == p->serial_in(p, UART_LCR))
|
|
|
+ unsigned int lcr = p->serial_in(p, UART_LCR);
|
|
|
+ if ((value & ~UART_LCR_SPAR) == (lcr & ~UART_LCR_SPAR))
|
|
|
return;
|
|
|
dw8250_force_idle(p);
|
|
|
writel(value, p->membase + (UART_LCR << p->regshift));
|