diff options
author | Jiri Slaby <jslaby@suse.cz> | 2012-10-18 16:26:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-22 19:53:00 -0400 |
commit | 53c5ee2cfb4dadc4f5c24fe671e2fbfc034c875e (patch) | |
tree | eb5813a4cc186299b3be5bda0fd06617d7940403 /include | |
parent | 70ece7a731598ac760c2a34421fcb2de18d2713f (diff) |
TTY: move ldisc data from tty_struct: simple members
Here we start moving all the n_tty related bits from tty_struct to
the newly defined n_tty_data struct in n_tty proper.
In this patch primitive members and bits are moved. The rest will be
done per-partes in the next patches.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Acked-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/tty.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index f02712da5d85..de590cec973b 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
@@ -270,13 +270,8 @@ struct tty_struct { | |||
270 | * historical reasons, this is included in the tty structure. | 270 | * historical reasons, this is included in the tty structure. |
271 | * Mostly locked by the BKL. | 271 | * Mostly locked by the BKL. |
272 | */ | 272 | */ |
273 | unsigned int column; | ||
274 | unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1; | ||
275 | unsigned char closing:1; | 273 | unsigned char closing:1; |
276 | unsigned char echo_overrun:1; | ||
277 | unsigned short minimum_to_wake; | 274 | unsigned short minimum_to_wake; |
278 | unsigned long overrun_time; | ||
279 | int num_overrun; | ||
280 | unsigned long process_char_map[256/(8*sizeof(unsigned long))]; | 275 | unsigned long process_char_map[256/(8*sizeof(unsigned long))]; |
281 | char *read_buf; | 276 | char *read_buf; |
282 | int read_head; | 277 | int read_head; |