diff options
Diffstat (limited to 'sys/dev/tx/if_txvar.h')
-rw-r--r-- | sys/dev/tx/if_txvar.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/tx/if_txvar.h b/sys/dev/tx/if_txvar.h index 1277244d98f4d..a1322c90060a9 100644 --- a/sys/dev/tx/if_txvar.h +++ b/sys/dev/tx/if_txvar.h @@ -70,7 +70,7 @@ struct epic_tx_buffer { /* Driver status structure */ typedef struct { - struct arpcom arpcom; + struct ifnet *ifp; struct resource *res; struct resource *irq; @@ -124,9 +124,6 @@ struct epic_type { char *name; }; -#define sc_if arpcom.ac_if -#define sc_macaddr arpcom.ac_enaddr - #define CSR_WRITE_4(sc, reg, val) \ bus_space_write_4((sc)->sc_st, (sc)->sc_sh, (reg), (val)) #define CSR_WRITE_2(sc, reg, val) \ |