summaryrefslogtreecommitdiff
path: root/sys/dev/ic/rl2var.h
diff options
context:
space:
mode:
authorDavid Leonard <d@cvs.openbsd.org>1999-06-23 04:48:50 +0000
committerDavid Leonard <d@cvs.openbsd.org>1999-06-23 04:48:50 +0000
commit6b2d6c17377685009e0e10a5cfd2934d12028581 (patch)
tree3b2a770f3a736e02b87c54c0865a07a035a911e7 /sys/dev/ic/rl2var.h
parent38983a68dbb1c4de00206eea9fb1e605be253a31 (diff)
attempt at repairing rl2_transmit (still broken); cleanup; spelling
Diffstat (limited to 'sys/dev/ic/rl2var.h')
-rw-r--r--sys/dev/ic/rl2var.h32
1 files changed, 17 insertions, 15 deletions
diff --git a/sys/dev/ic/rl2var.h b/sys/dev/ic/rl2var.h
index 92143c1af9c..6dd3cfd4d47 100644
--- a/sys/dev/ic/rl2var.h
+++ b/sys/dev/ic/rl2var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rl2var.h,v 1.1 1999/06/21 23:21:47 d Exp $ */
+/* $OpenBSD: rl2var.h,v 1.2 1999/06/23 04:48:49 d Exp $ */
/*
* David Leonard <d@openbsd.org>, 1999. Public domain.
*
@@ -58,8 +58,8 @@ struct rl2_softc {
/* Structure used to hold partial read state for rl2_rx_pdata() */
struct rl2_pdata {
- u_int8_t p_data; /* extra bytes read but not consumed */
- int p_nremain; /* number of bytes not consumed */
+ u_int8_t p_data; /* extra data read but not consumed */
+ int p_nremain; /* size of unconsumed data */
};
#define RL2_PDATA_INIT {0,0}
@@ -78,22 +78,24 @@ struct rl2_mm_cmd; /* fwd decl */
void rl2config __P((struct rl2_softc *));
int rl2intr __P((void *));
void rl2read __P((struct rl2_softc *, struct rl2_mm_cmd *, int));
-int rl2_enable __P((struct rl2_softc *, int));
-int rl2_reset __P((struct rl2_softc *));
-u_int8_t rl2_wakeup __P((struct rl2_softc *, u_int8_t));
-int rl2_rx_request __P((struct rl2_softc *, int));
-int rl2_rx_data __P((struct rl2_softc *, void *, int));
-void rl2_rx_pdata __P((struct rl2_softc *, void *, int,
+int rl2_enable __P((struct rl2_softc *, int));
+int rl2_reset __P((struct rl2_softc *));
+u_int8_t rl2_wakeup __P((struct rl2_softc *, u_int8_t));
+int rl2_rx_request __P((struct rl2_softc *, int));
+int rl2_rx_data __P((struct rl2_softc *, void *, int));
+void rl2_rx_pdata __P((struct rl2_softc *, void *, int,
struct rl2_pdata *));
-void rl2_rx_end __P((struct rl2_softc *));
-void rl2_clear_nak __P((struct rl2_softc *));
+void rl2_rx_end __P((struct rl2_softc *));
+void rl2_clear_nak __P((struct rl2_softc *));
+u_int8_t rl2_newseq __P((struct rl2_softc *));
+
void rl2_msg_tx_data __P((struct rl2_softc *, void *, u_int16_t,
struct rl2_msg_tx_state *));
-int rl2_msg_tx_start __P((struct rl2_softc *, void *, int,
+int rl2_msg_tx_start __P((struct rl2_softc *, void *, int,
struct rl2_msg_tx_state *));
-int rl2_msg_tx_end __P((struct rl2_softc *,
+int rl2_msg_tx_end __P((struct rl2_softc *,
struct rl2_msg_tx_state *));
-int rl2_msg_txrx __P((struct rl2_softc *, void *, int,
+int rl2_msg_txrx __P((struct rl2_softc *, void *, int,
void *, int));
int rl2_mbox_create __P((struct rl2_softc *, u_int8_t, void *,
@@ -123,7 +125,7 @@ void rl2_mbox_unlock __P((struct rl2_softc *, u_int8_t, size_t));
#define dprinthex(buf, len) /* nothing */
#endif
-/* debug messages to/from card. prints 4-byte groups separated by commas */
+/* debug messages to/from card. prints 4-octet groups separated by commas */
#define RL2DUMP
#define RL2DUMPHEX(buf, buflen) do { \
int _i; \