diff options
author | Alan Cox <alan@redhat.com> | 2008-07-17 00:55:53 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 04:12:37 +0400 |
commit | b02f5ad6a3ff5a1ee2a7b8ec6eee338de553b060 (patch) | |
tree | b432b32e1edbb24d6ccf34389604cf57ac2543d2 /include/linux/istallion.h | |
parent | f1d03228ea85877584d41bccf62841e7ca47043c (diff) | |
download | linux-b02f5ad6a3ff5a1ee2a7b8ec6eee338de553b060.tar.xz |
istallion: use tty_port
Switch istallion to use the new tty_port structure
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/istallion.h')
-rw-r--r-- | include/linux/istallion.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/linux/istallion.h b/include/linux/istallion.h index 5a84fe944b74..0d1840723249 100644 --- a/include/linux/istallion.h +++ b/include/linux/istallion.h @@ -51,25 +51,21 @@ */ struct stliport { unsigned long magic; + struct tty_port port; unsigned int portnr; unsigned int panelnr; unsigned int brdnr; unsigned long state; unsigned int devnr; - int flags; int baud_base; int custom_divisor; int close_delay; int closing_wait; - int refcount; int openwaitcnt; int rc; int argsize; void *argp; unsigned int rxmarkmsk; - struct tty_struct *tty; - wait_queue_head_t open_wait; - wait_queue_head_t close_wait; wait_queue_head_t raw_wait; struct asysigs asig; unsigned long addr; |