Lines Matching defs:rtw_dev
1974 struct rtw_dev { struct
1975 struct ieee80211_hw *hw;
1976 struct device *dev;
1978 struct rtw_hci hci;
1980 struct rtw_hw_scan_info scan_info;
1981 const struct rtw_chip_info *chip;
1982 struct rtw_hal hal;
1983 struct rtw_fifo_conf fifo;
1984 struct rtw_fw_state fw;
1985 struct rtw_efuse efuse;
1986 struct rtw_sec_desc sec;
1987 struct rtw_traffic_stats stats;
1988 struct rtw_regd regd;
1989 struct rtw_bf_info bf_info;
1991 struct rtw_dm_info dm_info;
1992 struct rtw_coex coex;
1995 struct mutex mutex;
1998 spinlock_t rf_lock;
2001 struct delayed_work watch_dog_work;
2002 u32 watch_dog_cnt;
2004 struct list_head rsvd_page_list;
2007 struct sk_buff_head c2h_queue;
2008 struct work_struct c2h_work;
2009 struct work_struct ips_work;
2010 struct work_struct fw_recovery_work;
2011 struct work_struct update_beacon_work;
2014 spinlock_t txq_lock;
2015 struct list_head txqs;
2016 struct workqueue_struct *tx_wq;
2017 struct work_struct tx_work;
2018 struct work_struct ba_work;
2020 struct rtw_tx_report tx_report;
2022 struct {
2028 } h2c;
2031 struct rtw_lps_conf lps_conf;
2032 bool ps_enabled;
2033 bool beacon_loss;
2034 struct completion lps_leave_check;
2059 static inline bool rtw_is_assoc(struct rtw_dev *rtwdev) in rtw_is_assoc() argument