Lines Matching defs:uath_softc
184 struct uath_softc { struct
185 struct ieee80211com sc_ic;
186 struct mbufq sc_snd;
187 device_t sc_dev;
188 struct usb_device *sc_udev;
189 void *sc_cmd_dma_buf;
190 void *sc_tx_dma_buf;
191 struct mtx sc_mtx;
192 uint32_t sc_debug;
194 struct uath_stat sc_stat;
195 int (*sc_newstate)(struct ieee80211com *,
198 struct usb_xfer *sc_xfer[UATH_N_XFERS];
199 struct uath_cmd sc_cmd[UATH_CMD_LIST_COUNT];
200 uath_cmdhead sc_cmd_active;
201 uath_cmdhead sc_cmd_inactive;
202 uath_cmdhead sc_cmd_pending;
203 uath_cmdhead sc_cmd_waiting;
204 struct uath_data sc_rx[UATH_RX_DATA_LIST_COUNT];
205 uath_datahead sc_rx_active;
206 uath_datahead sc_rx_inactive;
207 struct uath_data sc_tx[UATH_TX_DATA_LIST_COUNT];
208 uath_datahead sc_tx_active;
209 uath_datahead sc_tx_inactive;
210 uath_datahead sc_tx_pending;
212 uint32_t sc_msgid;
213 uint32_t sc_seqnum;
214 int sc_tx_timer;
215 struct callout watchdog_ch;
216 struct callout stat_ch;
218 struct mbuf *sc_intrx_head;
219 struct mbuf *sc_intrx_tail;
220 uint8_t sc_intrx_nextnum;
221 uint32_t sc_intrx_len;
224 struct uath_devcap sc_devcap;
225 uint8_t sc_serial[16];
228 uint32_t sc_flags;
232 struct uath_rx_radiotap_header sc_rxtap;
233 struct uath_tx_radiotap_header sc_txtap;