summaryrefslogtreecommitdiffstats
path: root/drivers/char/h8.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/h8.h')
-rw-r--r--drivers/char/h8.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/char/h8.h b/drivers/char/h8.h
index b59aadea8..986eef591 100644
--- a/drivers/char/h8.h
+++ b/drivers/char/h8.h
@@ -229,7 +229,7 @@ struct h8_data {
* H8 command buffers
*/
typedef struct h8_cmd_q {
- DLNODE(struct h8_cmd_q) link; /* double linked list */
+ struct list_head link; /* double linked list */
int ncmd; /* number of bytes in command */
int nrsp; /* number of bytes in response */
int cnt; /* number of bytes sent/received */
@@ -238,10 +238,6 @@ typedef struct h8_cmd_q {
u_char rcvbuf[H8_MAX_CMD_SIZE]; /* buffer to store response */
} h8_cmd_q_t;
-typedef struct __queue_head {
- DLNODE(struct h8_cmd_q) link;
-} queue_head_t;
-
union intr_buf {
u_char byte[2];
u_int word;