diff options
Diffstat (limited to 'drivers/char/rio/qbuf.h')
-rw-r--r-- | drivers/char/rio/qbuf.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/drivers/char/rio/qbuf.h b/drivers/char/rio/qbuf.h index 1fce02f8fcfc..acd9e8e5307d 100644 --- a/drivers/char/rio/qbuf.h +++ b/drivers/char/rio/qbuf.h | |||
@@ -40,7 +40,7 @@ | |||
40 | 40 | ||
41 | #ifndef lint | 41 | #ifndef lint |
42 | #ifdef SCCS_LABELS | 42 | #ifdef SCCS_LABELS |
43 | static char *_rio_qbuf_h_sccs = "@(#)qbuf.h 1.1" ; | 43 | static char *_rio_qbuf_h_sccs = "@(#)qbuf.h 1.1"; |
44 | #endif | 44 | #endif |
45 | #endif | 45 | #endif |
46 | 46 | ||
@@ -52,16 +52,15 @@ static char *_rio_qbuf_h_sccs = "@(#)qbuf.h 1.1" ; | |||
52 | #define PKTS_PER_BUFFER (220 / PKT_LENGTH) | 52 | #define PKTS_PER_BUFFER (220 / PKT_LENGTH) |
53 | #endif | 53 | #endif |
54 | 54 | ||
55 | typedef struct Q_BUF Q_BUF ; | 55 | typedef struct Q_BUF Q_BUF; |
56 | struct Q_BUF { | 56 | struct Q_BUF { |
57 | Q_BUF_ptr next ; | 57 | Q_BUF_ptr next; |
58 | Q_BUF_ptr prev ; | 58 | Q_BUF_ptr prev; |
59 | PKT_ptr buf[PKTS_PER_BUFFER] ; | 59 | PKT_ptr buf[PKTS_PER_BUFFER]; |
60 | } ; | 60 | }; |
61 | 61 | ||
62 | 62 | ||
63 | #endif | 63 | #endif |
64 | 64 | ||
65 | 65 | ||
66 | /*********** end of file ***********/ | 66 | /*********** end of file ***********/ |
67 | |||