mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
USB: ssu100: add disconnect function for ssu100
Add a disconnect function to the functions of this device. The disconnect is a call to usb_serial_generic_disconnect() so it requires that symbol to be exported from generic.c. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5c7efeb76e
commit
85dee135b8
@ -687,7 +687,6 @@ static void ssu100_process_read_urb(struct urb *urb)
|
||||
tty_kref_put(tty);
|
||||
}
|
||||
|
||||
|
||||
static struct usb_serial_driver ssu100_device = {
|
||||
.driver = {
|
||||
.owner = THIS_MODULE,
|
||||
@ -709,6 +708,7 @@ static struct usb_serial_driver ssu100_device = {
|
||||
.tiocmset = ssu100_tiocmset,
|
||||
.ioctl = ssu100_ioctl,
|
||||
.set_termios = ssu100_set_termios,
|
||||
.disconnect = usb_serial_generic_disconnect,
|
||||
};
|
||||
|
||||
static int __init ssu100_init(void)
|
||||
|
Loading…
Reference in New Issue
Block a user