aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tty.h
diff options
context:
space:
mode:
authorOkash Khawaja <okash.khawaja@gmail.com>2017-06-17 22:32:55 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-06-25 16:38:34 +0200
commitcbf4b3867875206aa548a8c6d7c886f3299d619e (patch)
treed42154a9768637098fdbecaec36d0ea022707b87 /include/linux/tty.h
parentstaging: speakup: fix synth caching when synth init fails (diff)
downloadlinux-dev-cbf4b3867875206aa548a8c6d7c886f3299d619e.tar.xz
linux-dev-cbf4b3867875206aa548a8c6d7c886f3299d619e.zip
tty: define tty_open_by_driver when CONFIG_TTY is not defined
This patch adds definition of tty_open_by_driver when CONFIG_TTY is not defined. This was supposed to have been included in commit 12e84c71b7d4ee38d51377fd494ac748ee4e6912 ("tty: export tty_open_by_driver"). The patch follows convention for other such functions and returns NULL. Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com> Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/tty.h')
-rw-r--r--include/linux/tty.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h
index 5c3f01f49b10..b75b2d51ba2b 100644
--- a/include/linux/tty.h
+++ b/include/linux/tty.h
@@ -422,6 +422,9 @@ static inline int __init tty_init(void)
{ return 0; }
static inline const char *tty_name(const struct tty_struct *tty)
{ return "(none)"; }
+static inline struct tty_struct *tty_open_by_driver(dev_t device,
+ struct inode *inode, struct file *filp)
+{ return NULL; }
#endif
extern struct ktermios tty_std_termios;