diff options
author | Eliad Peller <eliad@wizery.com> | 2011-10-05 11:56:06 +0200 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-10-07 07:33:50 +0200 |
commit | 170d0e6732c5fb1d4103ded3da95a5630c24e5dd (patch) | |
tree | 218cbb6b5d059f8b523527c12cd5c9770c3fb339 /drivers/net/wireless/wl12xx/wl12xx.h | |
parent | wl12xx: move ap_hlid_map into wlvif.ap (diff) | |
download | linux-170d0e6732c5fb1d4103ded3da95a5630c24e5dd.tar.xz linux-170d0e6732c5fb1d4103ded3da95a5630c24e5dd.zip |
wl12xx: move recorded_ap_keys into wlvif
move recorded_ap_keys 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.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h index 5fd3c262bc5f..074de4e1fb33 100644 --- a/drivers/net/wireless/wl12xx/wl12xx.h +++ b/drivers/net/wireless/wl12xx/wl12xx.h @@ -524,9 +524,6 @@ struct wl1271 { /* Most recently reported noise in dBm */ s8 noise; - /* recoreded keys for AP-mode - set here before AP startup */ - struct wl1271_ap_key *recorded_ap_keys[MAX_NUM_KEYS]; - /* bands supported by this instance of wl12xx */ struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS]; @@ -593,6 +590,9 @@ struct wl12xx_vif { /* HLIDs bitmap of associated stations */ unsigned long sta_hlid_map[BITS_TO_LONGS( WL12XX_MAX_LINKS)]; + + /* recoreded keys - set here before AP startup */ + struct wl1271_ap_key *recorded_keys[MAX_NUM_KEYS]; } ap; }; |