aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tty_driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/tty_driver.h')
-rw-r--r--include/linux/tty_driver.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/tty_driver.h b/include/linux/tty_driver.h
index 2322313a858..2c5c35c4656 100644
--- a/include/linux/tty_driver.h
+++ b/include/linux/tty_driver.h
@@ -7,6 +7,14 @@
7 * defined; unless noted otherwise, they are optional, and can be 7 * defined; unless noted otherwise, they are optional, and can be
8 * filled in with a null pointer. 8 * filled in with a null pointer.
9 * 9 *
10 * struct tty_struct * (*lookup)(struct tty_driver *self, int idx)
11 *
12 * Return the tty device corresponding to idx, NULL if there is not
13 * one currently in use and an ERR_PTR value on error. Called under
14 * tty_mutex (for now!)
15 *
16 * Optional method. Default behaviour is to use the ttys array
17 *
10 * int (*open)(struct tty_struct * tty, struct file * filp); 18 * int (*open)(struct tty_struct * tty, struct file * filp);
11 * 19 *
12 * This routine is called when a particular tty device is opened. 20 * This routine is called when a particular tty device is opened.
@@ -203,6 +211,7 @@ struct tty_struct;
203struct tty_driver; 211struct tty_driver;
204 212
205struct tty_operations { 213struct tty_operations {
214 struct tty_struct * (*lookup)(struct tty_driver *driver, int idx);
206 int (*open)(struct tty_struct * tty, struct file * filp); 215 int (*open)(struct tty_struct * tty, struct file * filp);
207 void (*close)(struct tty_struct * tty, struct file * filp); 216 void (*close)(struct tty_struct * tty, struct file * filp);
208 void (*shutdown)(struct tty_struct *tty); 217 void (*shutdown)(struct tty_struct *tty);