diff options
Diffstat (limited to 'drivers/char/rocket_int.h')
-rw-r--r-- | drivers/char/rocket_int.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/char/rocket_int.h b/drivers/char/rocket_int.h index 143cc432fdb2..21f3ff53ba32 100644 --- a/drivers/char/rocket_int.h +++ b/drivers/char/rocket_int.h | |||
@@ -1125,18 +1125,14 @@ Warnings: This function writes the data byte without checking to see if | |||
1125 | 1125 | ||
1126 | struct r_port { | 1126 | struct r_port { |
1127 | int magic; | 1127 | int magic; |
1128 | struct tty_port port; | ||
1128 | int line; | 1129 | int line; |
1129 | int flags; | 1130 | int flags; /* Don't yet match the ASY_ flags!! */ |
1130 | int count; | ||
1131 | int blocked_open; | ||
1132 | struct tty_struct *tty; | ||
1133 | unsigned int board:3; | 1131 | unsigned int board:3; |
1134 | unsigned int aiop:2; | 1132 | unsigned int aiop:2; |
1135 | unsigned int chan:3; | 1133 | unsigned int chan:3; |
1136 | CONTROLLER_t *ctlp; | 1134 | CONTROLLER_t *ctlp; |
1137 | CHANNEL_t channel; | 1135 | CHANNEL_t channel; |
1138 | int closing_wait; | ||
1139 | int close_delay; | ||
1140 | int intmask; | 1136 | int intmask; |
1141 | int xmit_fifo_room; /* room in xmit fifo */ | 1137 | int xmit_fifo_room; /* room in xmit fifo */ |
1142 | unsigned char *xmit_buf; | 1138 | unsigned char *xmit_buf; |
@@ -1148,8 +1144,7 @@ struct r_port { | |||
1148 | int read_status_mask; | 1144 | int read_status_mask; |
1149 | int cps; | 1145 | int cps; |
1150 | 1146 | ||
1151 | wait_queue_head_t open_wait; | 1147 | struct completion close_wait; /* Not yet matching the core */ |
1152 | struct completion close_wait; | ||
1153 | spinlock_t slock; | 1148 | spinlock_t slock; |
1154 | struct mutex write_mtx; | 1149 | struct mutex write_mtx; |
1155 | }; | 1150 | }; |