Lines Matching defs:rsu_softc
849 struct rsu_softc { struct
850 struct ieee80211com sc_ic;
851 struct mbufq sc_snd;
852 device_t sc_dev;
853 struct usb_device *sc_udev;
855 struct timeout_task calib_task;
856 struct task tx_task;
857 struct mtx sc_mtx;
858 int sc_ht;
859 int sc_nendpoints;
860 int sc_curpwrstate;
861 int sc_currssi;
863 u_int sc_running:1,
864 sc_vap_is_running:1,
865 sc_rx_checksum_enable:1,
866 sc_calibrating:1,
867 sc_active_scan:1,
868 sc_extra_scan:1;
869 u_int cut;
870 uint8_t sc_rftype;
871 int8_t sc_nrxstream;
872 int8_t sc_ntxstream;
873 struct rsu_data sc_rx[RSU_RX_LIST_COUNT];
874 struct rsu_data sc_tx[RSU_TX_LIST_COUNT];
875 uint8_t cmd_seq;
876 uint8_t rom[128];
877 struct usb_xfer *sc_xfer[RSU_N_TRANSFER];
885 struct task del_key_task;
886 uint8_t keys_bmap[R92S_CAM_ENTRY_BYTES];
887 const struct ieee80211_key *group_keys[IEEE80211_WEP_NKID];
889 struct mtx free_keys_bmap_mtx;
890 uint8_t free_keys_bmap[R92S_CAM_ENTRY_BYTES];
892 union {
895 } sc_rxtapu;
898 union {
901 } sc_txtapu;