aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/param.h
diff options
context:
space:
mode:
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