Lines Matching defs:ep_softc
37 struct ep_softc { struct
38 struct device sc_dev;
39 void *sc_ih;
40 struct timeout sc_epmbuffill_tmo;
42 struct arpcom sc_arpcom; /* Ethernet common part */
43 struct mii_data sc_mii; /* MII/media control */
44 bus_space_tag_t sc_iot; /* bus cookie */
45 bus_space_handle_t sc_ioh; /* bus i/o handle */
46 u_int ep_connectors; /* Connectors on this card. */
48 struct mbuf *mb[MAX_MBS]; /* spare mbuf storage. */
49 int next_mb; /* Which mbuf to use next. */
50 int tx_start_thresh; /* Current TX_start_thresh. */
51 int tx_succ_ok; /* # packets sent in sequence */
54 u_int ep_flags; /* capabilities flag (from EEPROM) */
91 void epconfig(struct ep_softc *, u_short, u_int8_t *); argument