aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/tsec/if_tsec.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/tsec/if_tsec.h')
-rw-r--r--sys/dev/tsec/if_tsec.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/tsec/if_tsec.h b/sys/dev/tsec/if_tsec.h
index c143509c7901..9b7b331068f1 100644
--- a/sys/dev/tsec/if_tsec.h
+++ b/sys/dev/tsec/if_tsec.h
@@ -46,7 +46,6 @@ struct tsec_softc {
device_t dev;
device_t tsec_miibus;
struct mii_data *tsec_mii; /* MII media control */
- struct callout tsec_tick_ch;
int tsec_link;
bus_dma_tag_t tsec_tx_dtag; /* TX descriptors tag */
@@ -91,9 +90,9 @@ struct tsec_softc {
int tsec_if_flags;
- /* Watchdog related */
- struct callout wd_callout;
- int wd_timer;
+ /* Watchdog and MII tick related */
+ struct callout tsec_callout;
+ int tsec_watchdog;
/* TX maps */
bus_dmamap_t tx_map_data[TSEC_TX_NUM_DESC];