aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/qbuf.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-01-11 15:17:49 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-11 21:42:14 -0500
commit8d8706e2f86d28814c1b40a116ffdeca35e4c949 (patch)
tree146567d7a807feb37a5368fbb4a6ee76d9d7bc7e /drivers/char/rio/qbuf.h
parenta9415644583ef344e02f84faf5fe24bfadb2af8e (diff)
[PATCH] lindent rio drivers
Run all rio files through indent -kr -i8 -bri0 -l255, as requested by Alan. rioboot.c and rioinit.c were skipped due to worrisome lindent warnings. Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rio/qbuf.h')
-rw-r--r--drivers/char/rio/qbuf.h15
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
43static char *_rio_qbuf_h_sccs = "@(#)qbuf.h 1.1" ; 43static 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
55typedef struct Q_BUF Q_BUF ; 55typedef struct Q_BUF Q_BUF;
56struct Q_BUF { 56struct 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