[SERIAL] Use uart_match_port() to find a matching port in find_port()
authorRussell King <rmk@dyn-67.arm.linux.org.uk>
Wed, 4 Jan 2006 18:13:03 +0000 (18:13 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 4 Jan 2006 18:13:03 +0000 (18:13 +0000)
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
drivers/serial/8250.c

index 076bf84..ad20d2d 100644 (file)
@@ -2299,9 +2299,7 @@ static int __init find_port(struct uart_port *p)
 
        for (line = 0; line < UART_NR; line++) {
                port = &serial8250_ports[line].port;
-               if (p->iotype == port->iotype &&
-                   p->iobase == port->iobase &&
-                   p->membase == port->membase)
+               if (uart_match_port(p, port))
                        return line;
        }
        return -ENODEV;