From: Adrian Bunk Date: Thu, 24 Jul 2008 04:26:47 +0000 (-0700) Subject: remove is_tty() X-Git-Tag: v2.6.27-rc1~843 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7ce20b2024d318b9ba88859226af1441270d99f;p=platform%2Fkernel%2Flinux-stable.git remove is_tty() This patch removes the no longer used is_tty(). Signed-off-by: Adrian Bunk Acked-by: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index fa48dba..6f4d856 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c @@ -1119,19 +1119,6 @@ int tty_hung_up_p(struct file *filp) EXPORT_SYMBOL(tty_hung_up_p); -/** - * is_tty - checker whether file is a TTY - * @filp: file handle that may be a tty - * - * Check if the file handle is a tty handle. - */ - -int is_tty(struct file *filp) -{ - return filp->f_op->read == tty_read - || filp->f_op->read == hung_up_tty_read; -} - static void session_clear_tty(struct pid *session) { struct task_struct *p;