|
@@ -5067,6 +5067,29 @@ static int brcmf_cfg80211_tdls_oper(struct wiphy *wiphy,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+static int
|
|
|
+brcmf_cfg80211_update_conn_params(struct wiphy *wiphy,
|
|
|
+ struct net_device *ndev,
|
|
|
+ struct cfg80211_connect_params *sme,
|
|
|
+ u32 changed)
|
|
|
+{
|
|
|
+ struct brcmf_if *ifp;
|
|
|
+ int err;
|
|
|
+
|
|
|
+ if (!(changed & UPDATE_ASSOC_IES))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ ifp = netdev_priv(ndev);
|
|
|
+ err = brcmf_vif_set_mgmt_ie(ifp->vif, BRCMF_VNDR_IE_ASSOCREQ_FLAG,
|
|
|
+ sme->ie, sme->ie_len);
|
|
|
+ if (err)
|
|
|
+ brcmf_err("Set Assoc REQ IE Failed\n");
|
|
|
+ else
|
|
|
+ brcmf_dbg(TRACE, "Applied Vndr IEs for Assoc request\n");
|
|
|
+
|
|
|
+ return err;
|
|
|
+}
|
|
|
+
|
|
|
#ifdef CONFIG_PM
|
|
|
static int
|
|
|
brcmf_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *ndev,
|
|
@@ -5134,6 +5157,7 @@ static struct cfg80211_ops brcmf_cfg80211_ops = {
|
|
|
.crit_proto_start = brcmf_cfg80211_crit_proto_start,
|
|
|
.crit_proto_stop = brcmf_cfg80211_crit_proto_stop,
|
|
|
.tdls_oper = brcmf_cfg80211_tdls_oper,
|
|
|
+ .update_connect_params = brcmf_cfg80211_update_conn_params,
|
|
|
};
|
|
|
|
|
|
struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
|