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/ftdi_sio.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/ftdi_sio.c')
-rw-r--r-- | drivers/usb/serial/ftdi_sio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 1d7c4fac02e8..46a88ae9c46a 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -2074,7 +2074,7 @@ static int ftdi_process_packet(struct tty_struct *tty, | |||
2074 | return 0; /* status only */ | 2074 | return 0; /* status only */ |
2075 | ch = packet + 2; | 2075 | ch = packet + 2; |
2076 | 2076 | ||
2077 | if (!(port->console && port->sysrq) && flag == TTY_NORMAL) | 2077 | if (!(port->port.console && port->sysrq) && flag == TTY_NORMAL) |
2078 | tty_insert_flip_string(tty, ch, len); | 2078 | tty_insert_flip_string(tty, ch, len); |
2079 | else { | 2079 | else { |
2080 | for (i = 0; i < len; i++, ch++) { | 2080 | for (i = 0; i < len; i++, ch++) { |