blackfin: Fix tty compile error in PIO mode
authorSonic Zhang <[email protected]>
Mon, 6 Apr 2009 16:32:35 +0000 (17:32 +0100)
committerLinus Torvalds <[email protected]>
Mon, 6 Apr 2009 21:36:29 +0000 (14:36 -0700)
Fixes this compile issue:

  drivers/serial/bfin_5xx.c: In function bfin_serial_rx_chars:
  drivers/serial/bfin_5xx.c:178: error: struct uart_info has no member named tty

Signed-off-by: Sonic Zhang <[email protected]>
Signed-off-by: Bryan Wu <[email protected]>
Signed-off-by: Alan Cox <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/serial/bfin_5xx.c

index 45c32b23d736508f440f8c0f258fdb5a47380523..d7b271656a2d5fb23421c6bf46b0d924f3bd6758 100644 (file)
@@ -174,10 +174,10 @@ static void bfin_serial_rx_chars(struct bfin_serial_port *uart)
                        return;
                }
 
-       if (!uart->port.info || !uart->port.info->tty)
+       if (!uart->port.info || !uart->port.info->port.tty)
                return;
 #endif
-       tty = uart->port.info->tty;
+       tty = uart->port.info->port.tty;
 
        if (ANOMALY_05000363) {
                /* The BF533 (and BF561) family of processors have a nice anomaly