diff options
Diffstat (limited to 'sys/dev/cs/if_csvar.h')
-rw-r--r-- | sys/dev/cs/if_csvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/cs/if_csvar.h b/sys/dev/cs/if_csvar.h index 58f8b6f3aea9f..03c4d5def032b 100644 --- a/sys/dev/cs/if_csvar.h +++ b/sys/dev/cs/if_csvar.h @@ -36,7 +36,7 @@ */ struct cs_softc { /* Ethernet common code */ - struct arpcom arpcom; + struct ifnet *ifp; /* Configuration words from EEPROM */ int auto_neg_cnf; /* AutoNegotitation configuration */ @@ -44,6 +44,8 @@ struct cs_softc { int isa_config; /* ISA configuration */ int chip_type; /* Type of chip */ + u_char enaddr[6]; + struct ifmedia media; /* Media information */ int port_rid; /* resource id for port range */ |