Commit 53e86317 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Linus Torvalds

tty: Fallout from tty-move-canon-specials

Today's linux-next build (x86_64 allmodconfig) failed like this:

/drivers/char/tty_ioctl.c: In function 'change_termios':
drivers/isdn/capi/capi.c:1234: error: implicit declaration of function 'n_tty_ioctl'
drivers/isdn/gigaset/ser-gigaset.c: In function 'gigaset_tty_ioctl':
drivers/isdn/gigaset/ser-gigaset.c:648: error: implicit declaration of function 'n_tty_ioctl'

Introduced by commit 686b5e4aea05a80e370dc931b7f4a8d03c80da54
("tty-move-canon-specials").  I added the following patch (which may not
be correct).
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 47afa7a5
...@@ -1231,7 +1231,7 @@ static int capinc_tty_ioctl(struct tty_struct *tty, struct file * file, ...@@ -1231,7 +1231,7 @@ static int capinc_tty_ioctl(struct tty_struct *tty, struct file * file,
int error = 0; int error = 0;
switch (cmd) { switch (cmd) {
default: default:
error = n_tty_ioctl (tty, file, cmd, arg); error = n_tty_ioctl_helper(tty, file, cmd, arg);
break; break;
} }
return error; return error;
......
...@@ -645,7 +645,7 @@ gigaset_tty_ioctl(struct tty_struct *tty, struct file *file, ...@@ -645,7 +645,7 @@ gigaset_tty_ioctl(struct tty_struct *tty, struct file *file,
case TCGETS: case TCGETS:
case TCGETA: case TCGETA:
/* pass through to underlying serial device */ /* pass through to underlying serial device */
rc = n_tty_ioctl(tty, file, cmd, arg); rc = n_tty_ioctl_helper(tty, file, cmd, arg);
break; break;
case TCFLSH: case TCFLSH:
...@@ -660,7 +660,7 @@ gigaset_tty_ioctl(struct tty_struct *tty, struct file *file, ...@@ -660,7 +660,7 @@ gigaset_tty_ioctl(struct tty_struct *tty, struct file *file,
break; break;
} }
/* flush the serial port's buffer */ /* flush the serial port's buffer */
rc = n_tty_ioctl(tty, file, cmd, arg); rc = n_tty_ioctl_helper(tty, file, cmd, arg);
break; break;
case FIONREAD: case FIONREAD:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment