Hi Alan, Today's linux-next build (powerpc allnoconfig) failed like this: drivers/char/pty.c:420: error: 'pty_bsd_ioctl' undeclared here (not in a function) Caused by 5265223407c8eed1b023aca77492c631e2676f5c ("tty-fix-shutdown"). I applied the following patch (which may not be correct). -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Wed, 20 Aug 2008 18:21:53 +1000 Subject: [PATCH] ttydev: fix for tty-fix-shutdown Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- drivers/char/pty.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/char/pty.c b/drivers/char/pty.c index fbd215b..2cae85c 100644 --- a/drivers/char/pty.c +++ b/drivers/char/pty.c @@ -417,7 +417,7 @@ static const struct tty_operations pts_unix98_ops = { .chars_in_buffer = pty_chars_in_buffer, .unthrottle = pty_unthrottle, .set_termios = pty_set_termios, - .ioctl = pty_bsd_ioctl, + .ioctl = pty_unix98_ioctl, .shutdown = pty_shutdown }; -- 1.5.6.3 -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html