aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/wl12xx.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl12xx.h')
-rw-r--r--drivers/net/wireless/wl12xx/wl12xx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h
index 91e6cd36bf8b..d6d5a7bff315 100644
--- a/drivers/net/wireless/wl12xx/wl12xx.h
+++ b/drivers/net/wireless/wl12xx/wl12xx.h
@@ -511,7 +511,6 @@ struct wl1271 {
511 struct completion *elp_compl; 511 struct completion *elp_compl;
512 struct completion *ps_compl; 512 struct completion *ps_compl;
513 struct delayed_work elp_work; 513 struct delayed_work elp_work;
514 struct delayed_work pspoll_work;
515 514
516 /* counter for ps-poll delivery failures */ 515 /* counter for ps-poll delivery failures */
517 int ps_poll_failures; 516 int ps_poll_failures;
@@ -604,6 +603,7 @@ struct wl1271_station {
604}; 603};
605 604
606struct wl12xx_vif { 605struct wl12xx_vif {
606 struct wl1271 *wl;
607 u8 bss_type; 607 u8 bss_type;
608 u8 p2p; /* we are using p2p role */ 608 u8 p2p; /* we are using p2p role */
609 u8 role_id; 609 u8 role_id;
@@ -650,6 +650,8 @@ struct wl12xx_vif {
650 650
651 /* Session counter for the chipset */ 651 /* Session counter for the chipset */
652 int session_counter; 652 int session_counter;
653
654 struct delayed_work pspoll_work;
653}; 655};
654 656
655static inline struct wl12xx_vif *wl12xx_vif_to_data(struct ieee80211_vif *vif) 657static inline struct wl12xx_vif *wl12xx_vif_to_data(struct ieee80211_vif *vif)