mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-18 20:54:20 +00:00
Staging: serqt_usb2: fix qt_close parameters in serqt_usb2
The parameter list for qt_close() was from the old non usb-serial driver. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
9b5de0a0a7
commit
d9dea3c1c0
1 changed files with 4 additions and 2 deletions
|
@ -1041,17 +1041,19 @@ static void qt_block_until_empty(struct tty_struct *tty,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void qt_close(struct tty_struct *tty, struct usb_serial_port *port,
|
static void qt_close( struct usb_serial_port *port)
|
||||||
struct file *filp)
|
|
||||||
{
|
{
|
||||||
struct usb_serial *serial = port->serial;
|
struct usb_serial *serial = port->serial;
|
||||||
struct quatech_port *qt_port;
|
struct quatech_port *qt_port;
|
||||||
struct quatech_port *port0;
|
struct quatech_port *port0;
|
||||||
|
struct tty_struct *tty;
|
||||||
int status;
|
int status;
|
||||||
unsigned int index;
|
unsigned int index;
|
||||||
status = 0;
|
status = 0;
|
||||||
|
|
||||||
dbg("%s - port %d\n", __func__, port->number);
|
dbg("%s - port %d\n", __func__, port->number);
|
||||||
|
|
||||||
|
tty = tty_port_tty_get(&port->port);
|
||||||
index = tty->index - serial->minor;
|
index = tty->index - serial->minor;
|
||||||
|
|
||||||
qt_port = qt_get_port_private(port);
|
qt_port = qt_get_port_private(port);
|
||||||
|
|
Loading…
Add table
Reference in a new issue