aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/param.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/param.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/param.h')
-rw-r--r--drivers/char/rio/param.h27
1 files changed, 13 insertions, 14 deletions
diff --git a/drivers/char/rio/param.h b/drivers/char/rio/param.h
index 2dc30b9aab37..de7e57180c91 100644
--- a/drivers/char/rio/param.h
+++ b/drivers/char/rio/param.h
@@ -42,20 +42,19 @@ static char *_param_h_sccs_ = "@(#)param.h 1.2";
42** the param command block, as used in OPEN and PARAM calls. 42** the param command block, as used in OPEN and PARAM calls.
43*/ 43*/
44 44
45struct phb_param 45struct phb_param {
46{ 46 BYTE Cmd; /* It is very important that these line up */
47 BYTE Cmd; /* It is very important that these line up */ 47 BYTE Cor1; /* with what is expected at the other end. */
48 BYTE Cor1; /* with what is expected at the other end. */ 48 BYTE Cor2; /* to confirm that you've got it right, */
49 BYTE Cor2; /* to confirm that you've got it right, */ 49 BYTE Cor4; /* check with cirrus/cirrus.h */
50 BYTE Cor4; /* check with cirrus/cirrus.h */ 50 BYTE Cor5;
51 BYTE Cor5; 51 BYTE TxXon; /* Transmit X-On character */
52 BYTE TxXon; /* Transmit X-On character */ 52 BYTE TxXoff; /* Transmit X-Off character */
53 BYTE TxXoff; /* Transmit X-Off character */ 53 BYTE RxXon; /* Receive X-On character */
54 BYTE RxXon; /* Receive X-On character */ 54 BYTE RxXoff; /* Receive X-Off character */
55 BYTE RxXoff; /* Receive X-Off character */ 55 BYTE LNext; /* Literal-next character */
56 BYTE LNext; /* Literal-next character */ 56 BYTE TxBaud; /* Transmit baudrate */
57 BYTE TxBaud; /* Transmit baudrate */ 57 BYTE RxBaud; /* Receive baudrate */
58 BYTE RxBaud; /* Receive baudrate */
59}; 58};
60 59
61#endif 60#endif