diff options
| author | Alexander Viro <viro@www.linux.org.uk> | 2003-04-23 04:18:18 -0700 |
|---|---|---|
| committer | Christoph Hellwig <hch@lst.de> | 2003-04-23 04:18:18 -0700 |
| commit | 27e8099f0e926d0f6c91734b79913a6c0bdc4149 (patch) | |
| tree | 70f8342e384185b144af57cbe10012a5adb34d0d /include/linux | |
| parent | 352cf63679ac29fb329417e4ef19d8b39e196f20 (diff) | |
[PATCH] tty cleanups (2/12)
Instead of copying tty_driver into tty_struct we put a reference
in there. tty->driver turned into a pointer, users updated. Large, but
trivial
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/tty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index 9c16b6c58bd0..1ee727bd536c 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -259,7 +259,7 @@ struct tty_flip_buffer { */ struct tty_struct { int magic; - struct tty_driver driver; + struct tty_driver *driver; struct tty_ldisc ldisc; struct termios *termios, *termios_locked; int pgrp; |
