Commit 3bc0a96c authored by Arend van Spriel's avatar Arend van Spriel Committed by John W. Linville

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: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: default avatarHante Meuleman <meuleman@broadcom.com>
Signed-off-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarFranky Lin <frankyl@broadcom.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 9f3a9903
...@@ -214,23 +214,17 @@ struct brcmf_cfg80211_security { ...@@ -214,23 +214,17 @@ struct brcmf_cfg80211_security {
u32 wpa_auth; u32 wpa_auth;
}; };
/* ibss information for currently joined ibss network */ /**
struct brcmf_cfg80211_ibss { * struct brcmf_cfg80211_profile - profile information.
u8 beacon_interval; /* in millisecond */ *
u8 atim; /* in millisecond */ * @ssid: ssid of associated/associating ap.
s8 join_only; * @bssid: bssid of joined/joining ibss.
u8 band; * @sec: security information.
u8 channel; */
};
/* dongle profile */
struct brcmf_cfg80211_profile { struct brcmf_cfg80211_profile {
u32 mode;
struct brcmf_ssid ssid; struct brcmf_ssid ssid;
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
struct brcmf_cfg80211_security sec; struct brcmf_cfg80211_security sec;
struct brcmf_cfg80211_ibss ibss;
s32 band;
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment