diff options
author | Johan Hovold <jhovold@gmail.com> | 2013-03-21 07:36:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-25 16:50:50 -0400 |
commit | 143d9d961608b737d90a813deaaf91affb41c83c (patch) | |
tree | 5ee70e765be90948e9a6afb6f346e15326eb676d /include/linux/usb/serial.h | |
parent | 5cb27dde2e8b7bcbdce6de270c73c021a65caff8 (diff) |
USB: serial: add tiocmiwait subdriver operation
Add tiocmiwait operation to struct usb_serial_driver.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/usb/serial.h')
-rw-r--r-- | include/linux/usb/serial.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h index 3f8f5e3c76d5..9c8b53f80f48 100644 --- a/include/linux/usb/serial.h +++ b/include/linux/usb/serial.h | |||
@@ -272,6 +272,7 @@ struct usb_serial_driver { | |||
272 | int (*tiocmget)(struct tty_struct *tty); | 272 | int (*tiocmget)(struct tty_struct *tty); |
273 | int (*tiocmset)(struct tty_struct *tty, | 273 | int (*tiocmset)(struct tty_struct *tty, |
274 | unsigned int set, unsigned int clear); | 274 | unsigned int set, unsigned int clear); |
275 | int (*tiocmiwait)(struct tty_struct *tty, unsigned long arg); | ||
275 | int (*get_icount)(struct tty_struct *tty, | 276 | int (*get_icount)(struct tty_struct *tty, |
276 | struct serial_icounter_struct *icount); | 277 | struct serial_icounter_struct *icount); |
277 | /* Called by the tty layer for port level work. There may or may not | 278 | /* Called by the tty layer for port level work. There may or may not |