Commit 4235edcd authored by Hante Meuleman's avatar Hante Meuleman Committed by Kalle Valo

brcmfmac: Remove some redundant cfg80211 data

Reviewed-by: default avatarArend Van Spriel <arend@broadcom.com>
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Signed-off-by: default avatarHante Meuleman <meuleman@broadcom.com>
Signed-off-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 675f5d82
...@@ -5203,7 +5203,6 @@ static void brcmf_init_conf(struct brcmf_cfg80211_conf *conf) ...@@ -5203,7 +5203,6 @@ static void brcmf_init_conf(struct brcmf_cfg80211_conf *conf)
conf->rts_threshold = (u32)-1; conf->rts_threshold = (u32)-1;
conf->retry_short = (u32)-1; conf->retry_short = (u32)-1;
conf->retry_long = (u32)-1; conf->retry_long = (u32)-1;
conf->tx_power = -1;
} }
static void brcmf_register_event_handlers(struct brcmf_cfg80211_info *cfg) static void brcmf_register_event_handlers(struct brcmf_cfg80211_info *cfg)
......
...@@ -95,14 +95,6 @@ struct brcmf_cfg80211_conf { ...@@ -95,14 +95,6 @@ struct brcmf_cfg80211_conf {
u32 rts_threshold; u32 rts_threshold;
u32 retry_short; u32 retry_short;
u32 retry_long; u32 retry_long;
s32 tx_power;
struct ieee80211_channel channel;
};
/* basic structure of information element */
struct brcmf_cfg80211_ie {
u16 offset;
u8 buf[WL_TLV_INFO_MAX];
}; };
/* security information with currently associated ap */ /* security information with currently associated ap */
...@@ -333,7 +325,6 @@ struct brcmf_cfg80211_vif_event { ...@@ -333,7 +325,6 @@ struct brcmf_cfg80211_vif_event {
* @usr_sync: mainly for dongle up/down synchronization. * @usr_sync: mainly for dongle up/down synchronization.
* @bss_list: bss_list holding scanned ap information. * @bss_list: bss_list holding scanned ap information.
* @bss_info: bss information for cfg80211 layer. * @bss_info: bss information for cfg80211 layer.
* @ie: information element object for internal purpose.
* @conn_info: association info. * @conn_info: association info.
* @pmk_list: wpa2 pmk list. * @pmk_list: wpa2 pmk list.
* @scan_status: scan activity on the dongle. * @scan_status: scan activity on the dongle.
...@@ -367,7 +358,6 @@ struct brcmf_cfg80211_info { ...@@ -367,7 +358,6 @@ struct brcmf_cfg80211_info {
struct cfg80211_scan_request *scan_request; struct cfg80211_scan_request *scan_request;
struct mutex usr_sync; struct mutex usr_sync;
struct wl_cfg80211_bss_info *bss_info; struct wl_cfg80211_bss_info *bss_info;
struct brcmf_cfg80211_ie ie;
struct brcmf_cfg80211_connect_info conn_info; struct brcmf_cfg80211_connect_info conn_info;
struct brcmf_cfg80211_pmk_list *pmk_list; struct brcmf_cfg80211_pmk_list *pmk_list;
unsigned long scan_status; unsigned long scan_status;
......
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