aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/riscom8.h
diff options
context:
space:
mode:
authorAlan Cox <alan@redhat.com>2008-07-16 16:55:29 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-20 20:12:36 -0400
commit85f8f81052eeb3eac1242731a8777caacfef0aa9 (patch)
tree32f1fe3efc1e60b46f5d19eb931d462da8260d9a /drivers/char/riscom8.h
parentb5391e29f428d11755ca2c91074c6db6f5c69d7c (diff)
riscom8: use tty_port
Switch riscom8 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 'drivers/char/riscom8.h')
-rw-r--r--drivers/char/riscom8.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/char/riscom8.h b/drivers/char/riscom8.h
index cdfdf4394477..29ddbab78801 100644
--- a/drivers/char/riscom8.h
+++ b/drivers/char/riscom8.h
@@ -66,20 +66,14 @@ struct riscom_board {
66 66
67struct riscom_port { 67struct riscom_port {
68 int magic; 68 int magic;
69 struct tty_port port;
69 int baud_base; 70 int baud_base;
70 int flags;
71 struct tty_struct * tty;
72 int count;
73 int blocked_open;
74 int timeout; 71 int timeout;
75 int close_delay; 72 int close_delay;
76 unsigned char * xmit_buf;
77 int custom_divisor; 73 int custom_divisor;
78 int xmit_head; 74 int xmit_head;
79 int xmit_tail; 75 int xmit_tail;
80 int xmit_cnt; 76 int xmit_cnt;
81 wait_queue_head_t open_wait;
82 wait_queue_head_t close_wait;
83 short wakeup_chars; 77 short wakeup_chars;
84 short break_length; 78 short break_length;
85 unsigned short closing_wait; 79 unsigned short closing_wait;