diff options
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/8250.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index 076bf848e4d1..ad20d2dd85d7 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -2299,9 +2299,7 @@ static int __init find_port(struct uart_port *p) | |||
2299 | 2299 | ||
2300 | for (line = 0; line < UART_NR; line++) { | 2300 | for (line = 0; line < UART_NR; line++) { |
2301 | port = &serial8250_ports[line].port; | 2301 | port = &serial8250_ports[line].port; |
2302 | if (p->iotype == port->iotype && | 2302 | if (uart_match_port(p, port)) |
2303 | p->iobase == port->iobase && | ||
2304 | p->membase == port->membase) | ||
2305 | return line; | 2303 | return line; |
2306 | } | 2304 | } |
2307 | return -ENODEV; | 2305 | return -ENODEV; |