diff options
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/capi/capi.c | 2 | ||||
-rw-r--r-- | drivers/isdn/gigaset/interface.c | 4 | ||||
-rw-r--r-- | drivers/isdn/i4l/isdn_tty.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isdn/capi/capi.c b/drivers/isdn/capi/capi.c index 787a630a8e56..0475a54df83a 100644 --- a/drivers/isdn/capi/capi.c +++ b/drivers/isdn/capi/capi.c | |||
@@ -1203,7 +1203,7 @@ static int capinc_tty_ioctl(struct tty_struct *tty, struct file * file, | |||
1203 | return error; | 1203 | return error; |
1204 | } | 1204 | } |
1205 | 1205 | ||
1206 | static void capinc_tty_set_termios(struct tty_struct *tty, struct termios * old) | 1206 | static void capinc_tty_set_termios(struct tty_struct *tty, struct ktermios * old) |
1207 | { | 1207 | { |
1208 | #ifdef _DEBUG_TTYFUNCS | 1208 | #ifdef _DEBUG_TTYFUNCS |
1209 | printk(KERN_DEBUG "capinc_tty_set_termios\n"); | 1209 | printk(KERN_DEBUG "capinc_tty_set_termios\n"); |
diff --git a/drivers/isdn/gigaset/interface.c b/drivers/isdn/gigaset/interface.c index 7edea015867e..458b6462f937 100644 --- a/drivers/isdn/gigaset/interface.c +++ b/drivers/isdn/gigaset/interface.c | |||
@@ -127,7 +127,7 @@ static int if_write_room(struct tty_struct *tty); | |||
127 | static int if_chars_in_buffer(struct tty_struct *tty); | 127 | static int if_chars_in_buffer(struct tty_struct *tty); |
128 | static void if_throttle(struct tty_struct *tty); | 128 | static void if_throttle(struct tty_struct *tty); |
129 | static void if_unthrottle(struct tty_struct *tty); | 129 | static void if_unthrottle(struct tty_struct *tty); |
130 | static void if_set_termios(struct tty_struct *tty, struct termios *old); | 130 | static void if_set_termios(struct tty_struct *tty, struct ktermios *old); |
131 | static int if_tiocmget(struct tty_struct *tty, struct file *file); | 131 | static int if_tiocmget(struct tty_struct *tty, struct file *file); |
132 | static int if_tiocmset(struct tty_struct *tty, struct file *file, | 132 | static int if_tiocmset(struct tty_struct *tty, struct file *file, |
133 | unsigned int set, unsigned int clear); | 133 | unsigned int set, unsigned int clear); |
@@ -490,7 +490,7 @@ static void if_unthrottle(struct tty_struct *tty) | |||
490 | mutex_unlock(&cs->mutex); | 490 | mutex_unlock(&cs->mutex); |
491 | } | 491 | } |
492 | 492 | ||
493 | static void if_set_termios(struct tty_struct *tty, struct termios *old) | 493 | static void if_set_termios(struct tty_struct *tty, struct ktermios *old) |
494 | { | 494 | { |
495 | struct cardstate *cs; | 495 | struct cardstate *cs; |
496 | unsigned int iflag; | 496 | unsigned int iflag; |
diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c index 2b91bb07fc7f..fc80afe555b9 100644 --- a/drivers/isdn/i4l/isdn_tty.c +++ b/drivers/isdn/i4l/isdn_tty.c | |||
@@ -1464,7 +1464,7 @@ isdn_tty_ioctl(struct tty_struct *tty, struct file *file, | |||
1464 | } | 1464 | } |
1465 | 1465 | ||
1466 | static void | 1466 | static void |
1467 | isdn_tty_set_termios(struct tty_struct *tty, struct termios *old_termios) | 1467 | isdn_tty_set_termios(struct tty_struct *tty, struct ktermios *old_termios) |
1468 | { | 1468 | { |
1469 | modem_info *info = (modem_info *) tty->driver_data; | 1469 | modem_info *info = (modem_info *) tty->driver_data; |
1470 | 1470 | ||