diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2010-03-08 22:50:12 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:31 -0400 |
commit | bd5afa9eac6daa408412a31a6c69e87e8bd28c7e (patch) | |
tree | 5f99e4ee9d787d038746c2217f7c1152fad3c453 /drivers/usb/serial/pl2303.c | |
parent | 9757de384451a606af8c722213cb973192cbbd1b (diff) |
usb-serial: Use tty_port version console instead of usb_serial_port
Replace all instances of using the console variable in struct
usb_serial_port with the struct tty_port version.
CC: Alan Cox <alan@linux.intel.com>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Oliver Neukum <oliver@neukum.org>
CC: Andrew Morton <akpm@linux-foundation.org>
CC: linux-usb@vger.kernel.org
CC: linux-kernel@vger.kernel.org
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/pl2303.c')
-rw-r--r-- | drivers/usb/serial/pl2303.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index c28b1607eacc..b10b0efe3e06 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c | |||
@@ -1058,7 +1058,7 @@ static void pl2303_push_data(struct tty_struct *tty, | |||
1058 | if (line_status & UART_OVERRUN_ERROR) | 1058 | if (line_status & UART_OVERRUN_ERROR) |
1059 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); | 1059 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); |
1060 | 1060 | ||
1061 | if (tty_flag == TTY_NORMAL && !(port->console && port->sysrq)) | 1061 | if (tty_flag == TTY_NORMAL && !(port->port.console && port->sysrq)) |
1062 | tty_insert_flip_string(tty, data, urb->actual_length); | 1062 | tty_insert_flip_string(tty, data, urb->actual_length); |
1063 | else { | 1063 | else { |
1064 | int i; | 1064 | int i; |