diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
| commit | e39756439c7255bc16ba14b7b991cb01ba1c93bd (patch) | |
| tree | 112dfed9c5841280f457e0dca97e8de49e04ecd9 /sys/dev/ti | |
| parent | 13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ti')
| -rw-r--r-- | sys/dev/ti/if_tireg.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ti/if_tireg.h b/sys/dev/ti/if_tireg.h index fd6cb00cb79d..5210ffac9cff 100644 --- a/sys/dev/ti/if_tireg.h +++ b/sys/dev/ti/if_tireg.h @@ -1103,12 +1103,12 @@ struct ti_type { struct ti_mc_entry { struct ether_addr mc_addr; - SLIST_ENTRY(struct ti_mc_entry) mc_entries; + SLIST_ENTRY(ti_mc_entry) mc_entries; }; struct ti_jpool_entry { int slot; - SLIST_ENTRY(struct ti_jpool_entry) jpool_entries; + SLIST_ENTRY(ti_jpool_entry) jpool_entries; }; struct ti_softc { @@ -1135,9 +1135,9 @@ struct ti_softc { u_int16_t ti_std; /* current std ring head */ u_int16_t ti_mini; /* current mini ring head */ u_int16_t ti_jumbo; /* current jumo ring head */ - SLIST_HEAD(__ti_mchead, struct ti_mc_entry) ti_mc_listhead; - SLIST_HEAD(__ti_jfreehead, struct ti_jpool_entry) ti_jfree_listhead; - SLIST_HEAD(__ti_jinusehead, struct ti_jpool_entry) ti_jinuse_listhead; + SLIST_HEAD(__ti_mchead, ti_mc_entry) ti_mc_listhead; + SLIST_HEAD(__ti_jfreehead, ti_jpool_entry) ti_jfree_listhead; + SLIST_HEAD(__ti_jinusehead, ti_jpool_entry) ti_jinuse_listhead; u_int32_t ti_stat_ticks; u_int32_t ti_rx_coal_ticks; u_int32_t ti_tx_coal_ticks; |
