Skip to content

Commit 03514cb

Browse files
dberlinjannau
authored andcommitted
[brcmfmac] Disable partial SAE offload
Right now, partial SAE offload support is not working with supplicants. This patch currently disables it until we figure that out. We still do full SAE offload. Signed-off-by: Daniel Berlin <dberlin@dberlin.org>
1 parent df423cb commit 03514cb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • drivers/net/wireless/broadcom/brcm80211/brcmfmac

drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7849,7 +7849,9 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp)
78497849
wiphy_ext_feature_set(wiphy,
78507850
NL80211_EXT_FEATURE_SAE_OFFLOAD_AP);
78517851
}
7852-
if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SAE)) {
7852+
7853+
/* FIXME: Currently our partial SAE offload is breaking with some AP's */
7854+
if (0 && brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SAE)) {
78537855
wiphy->features |= NL80211_FEATURE_SAE;
78547856
}
78557857

0 commit comments

Comments
 (0)