aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorArend van Spriel <arend@broadcom.com>2012-10-22 16:55:35 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-10-29 15:28:50 -0400
commit3bc0a96caa2ea165beb33e42ea08c083ae7ed933 (patch)
tree6cedb44d4c566ccd2f80aea3bf4ad823bd0b233c /drivers
parent9f3a9903220015f2f94d0d3945e7ae50af39dbe4 (diff)
brcmfmac: cleanup brcmf_cfg80211_profile structure
A couple of unused fields have been removed and kernel-doc info has been added to the structure. Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.h20
1 files changed, 7 insertions, 13 deletions
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.h b/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.h
index 851403f34ebd..08ca390e4575 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.h
+++ b/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.h
@@ -214,23 +214,17 @@ struct brcmf_cfg80211_security {
214 u32 wpa_auth; 214 u32 wpa_auth;
215}; 215};
216 216
217/* ibss information for currently joined ibss network */ 217/**
218struct brcmf_cfg80211_ibss { 218 * struct brcmf_cfg80211_profile - profile information.
219 u8 beacon_interval; /* in millisecond */ 219 *
220 u8 atim; /* in millisecond */ 220 * @ssid: ssid of associated/associating ap.
221 s8 join_only; 221 * @bssid: bssid of joined/joining ibss.
222 u8 band; 222 * @sec: security information.
223 u8 channel; 223 */
224};
225
226/* dongle profile */
227struct brcmf_cfg80211_profile { 224struct brcmf_cfg80211_profile {
228 u32 mode;
229 struct brcmf_ssid ssid; 225 struct brcmf_ssid ssid;
230 u8 bssid[ETH_ALEN]; 226 u8 bssid[ETH_ALEN];
231 struct brcmf_cfg80211_security sec; 227 struct brcmf_cfg80211_security sec;
232 struct brcmf_cfg80211_ibss ibss;
233 s32 band;
234}; 228};
235 229
236/** 230/**