blackfin: Fix tty compile error in PIO mode

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 <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Sonic Zhang
2009-04-06 17:32:35 +01:00
committed by Linus Torvalds
parent 59e4e3e65d
commit df04baf1e6

View File

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