Lines Matching defs:rtw_dev
1823 struct rtw_dev { struct
1824 struct ieee80211_hw *hw;
1825 struct device *dev;
1827 struct rtw_hci hci;
1829 struct rtw_chip_info *chip;
1830 struct rtw_hal hal;
1831 struct rtw_fifo_conf fifo;
1832 struct rtw_fw_state fw;
1833 struct rtw_efuse efuse;
1834 struct rtw_sec_desc sec;
1835 struct rtw_traffic_stats stats;
1836 struct rtw_regulatory regd;
1837 struct rtw_bf_info bf_info;
1839 struct rtw_dm_info dm_info;
1840 struct rtw_coex coex;
1843 struct mutex mutex;
1846 spinlock_t rf_lock;
1849 struct delayed_work watch_dog_work;
1850 u32 watch_dog_cnt;
1852 struct list_head rsvd_page_list;
1855 struct sk_buff_head c2h_queue;
1856 struct work_struct c2h_work;
1857 struct work_struct fw_recovery_work;
1860 spinlock_t txq_lock;
1861 struct list_head txqs;
1862 struct workqueue_struct *tx_wq;
1863 struct work_struct tx_work;
1864 struct work_struct ba_work;
1866 struct rtw_tx_report tx_report;
1868 struct {
1874 } h2c;
1877 struct rtw_lps_conf lps_conf;
1878 bool ps_enabled;
1879 bool beacon_loss;
1880 struct completion lps_leave_check;
1905 static inline bool rtw_is_assoc(struct rtw_dev *rtwdev) in rtw_is_assoc() argument