diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
| commit | 740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch) | |
| tree | acf054a865eef37380f5ac3d3c07766b5bb234b0 /sys/dev/sk | |
| parent | b4183771fd8ab7a5946fd38df04c1e24b1268bea (diff) | |
Notes
Diffstat (limited to 'sys/dev/sk')
| -rw-r--r-- | sys/dev/sk/if_skreg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sk/if_skreg.h b/sys/dev/sk/if_skreg.h index af17c1c165ce..2a5afc0a3258 100644 --- a/sys/dev/sk/if_skreg.h +++ b/sys/dev/sk/if_skreg.h @@ -1129,7 +1129,7 @@ struct sk_jslot { struct sk_jpool_entry { int slot; - SLIST_ENTRY(sk_jpool_entry) jpool_entries; + SLIST_ENTRY(struct sk_jpool_entry) jpool_entries; }; struct sk_chain { @@ -1209,8 +1209,8 @@ struct sk_if_softc { struct sk_softc *sk_softc; /* parent controller */ int sk_tx_bmu; /* TX BMU register */ int sk_if_flags; - SLIST_HEAD(__sk_jfreehead, sk_jpool_entry) sk_jfree_listhead; - SLIST_HEAD(__sk_jinusehead, sk_jpool_entry) sk_jinuse_listhead; + SLIST_HEAD(__sk_jfreehead, struct sk_jpool_entry) sk_jfree_listhead; + SLIST_HEAD(__sk_jinusehead, struct sk_jpool_entry) sk_jinuse_listhead; }; #define SK_MAXUNIT 256 |
