mirror of https://gitee.com/openkylin/linux.git
brcmfmac: fix roamoff=1 modparam
When the update_connect_param callback is set, nl80211 expects the flag WIPHY_FLAG_SUPPORTS_FW_ROAM to be set as well. However, this flag is only set when modparam roamoff=0, while the callback is set unconditionally. Since commit7f9a3e150e
this causes a warning in wiphy_register, which breaks brcmfmac. Disable the update_connect_param callback when roamoff=0 to fix this. Fixes:7f9a3e150e
("nl80211: Update ERP info using NL80211_CMD_UPDATE_CONNECT_PARAMS") Cc: Stable <stable@vger.kernel.org> # 4.19+ Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
cc4dc97ffc
commit
8c892df415
|
@ -5196,10 +5196,17 @@ static struct cfg80211_ops brcmf_cfg80211_ops = {
|
||||||
.del_pmk = brcmf_cfg80211_del_pmk,
|
.del_pmk = brcmf_cfg80211_del_pmk,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct cfg80211_ops *brcmf_cfg80211_get_ops(void)
|
struct cfg80211_ops *brcmf_cfg80211_get_ops(struct brcmf_mp_device *settings)
|
||||||
{
|
{
|
||||||
return kmemdup(&brcmf_cfg80211_ops, sizeof(brcmf_cfg80211_ops),
|
struct cfg80211_ops *ops;
|
||||||
|
|
||||||
|
ops = kmemdup(&brcmf_cfg80211_ops, sizeof(brcmf_cfg80211_ops),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
|
|
||||||
|
if (ops && settings->roamoff)
|
||||||
|
ops->update_connect_params = NULL;
|
||||||
|
|
||||||
|
return ops;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
|
struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
|
||||||
|
|
|
@ -404,7 +404,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
|
||||||
void brcmf_cfg80211_detach(struct brcmf_cfg80211_info *cfg);
|
void brcmf_cfg80211_detach(struct brcmf_cfg80211_info *cfg);
|
||||||
s32 brcmf_cfg80211_up(struct net_device *ndev);
|
s32 brcmf_cfg80211_up(struct net_device *ndev);
|
||||||
s32 brcmf_cfg80211_down(struct net_device *ndev);
|
s32 brcmf_cfg80211_down(struct net_device *ndev);
|
||||||
struct cfg80211_ops *brcmf_cfg80211_get_ops(void);
|
struct cfg80211_ops *brcmf_cfg80211_get_ops(struct brcmf_mp_device *settings);
|
||||||
enum nl80211_iftype brcmf_cfg80211_get_iftype(struct brcmf_if *ifp);
|
enum nl80211_iftype brcmf_cfg80211_get_iftype(struct brcmf_if *ifp);
|
||||||
|
|
||||||
struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
|
struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
|
||||||
|
|
|
@ -1130,7 +1130,7 @@ int brcmf_attach(struct device *dev, struct brcmf_mp_device *settings)
|
||||||
|
|
||||||
brcmf_dbg(TRACE, "Enter\n");
|
brcmf_dbg(TRACE, "Enter\n");
|
||||||
|
|
||||||
ops = brcmf_cfg80211_get_ops();
|
ops = brcmf_cfg80211_get_ops(settings);
|
||||||
if (!ops)
|
if (!ops)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue