Skip to content

Commit 415060a

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 0d45b52 commit 415060a

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
@@ -7839,7 +7839,9 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp)
78397839
wiphy_ext_feature_set(wiphy,
78407840
NL80211_EXT_FEATURE_SAE_OFFLOAD_AP);
78417841
}
7842-
if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SAE)) {
7842+
7843+
/* FIXME: Currently our partial SAE offload is breaking with some AP's */
7844+
if (0 && brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SAE)) {
78437845
wiphy->features |= NL80211_FEATURE_SAE;
78447846
}
78457847

0 commit comments

Comments
 (0)