aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/wl12xx.h
diff options
context:
space:
mode:
authorEliad Peller <eliad@wizery.com>2011-10-05 05:55:49 -0400
committerLuciano Coelho <coelho@ti.com>2011-10-07 01:32:40 -0400
commitbddb29b83a9874fda21c34abe7627cbf14fec10e (patch)
treec8f15fca9f7501da019a9e71ec4133b57f1fc456 /drivers/net/wireless/wl12xx/wl12xx.h
parent1fe9f1616ee0852e9422d1f676630e9a4531ace3 (diff)
wl12xx: move probereq into wlvif
move probereq into the per-interface data, rather than being global. Signed-off-by: Eliad Peller <eliad@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl12xx.h')
-rw-r--r--drivers/net/wireless/wl12xx/wl12xx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h
index 539cf40be535..8d100561522c 100644
--- a/drivers/net/wireless/wl12xx/wl12xx.h
+++ b/drivers/net/wireless/wl12xx/wl12xx.h
@@ -507,9 +507,6 @@ struct wl1271 {
507 507
508 bool sched_scanning; 508 bool sched_scanning;
509 509
510 /* probe-req template for the current AP */
511 struct sk_buff *probereq;
512
513 /* Our association ID */ 510 /* Our association ID */
514 u16 aid; 511 u16 aid;
515 512
@@ -641,6 +638,9 @@ struct wl12xx_vif {
641 */ 638 */
642 u32 basic_rate; 639 u32 basic_rate;
643 u32 rate_set; 640 u32 rate_set;
641
642 /* probe-req template for the current AP */
643 struct sk_buff *probereq;
644}; 644};
645 645
646static inline struct wl12xx_vif *wl12xx_vif_to_data(struct ieee80211_vif *vif) 646static inline struct wl12xx_vif *wl12xx_vif_to_data(struct ieee80211_vif *vif)