Skip to content

Commit ef80cb4

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 63bb439 commit ef80cb4

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
@@ -7832,7 +7832,9 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp)
78327832
wiphy_ext_feature_set(wiphy,
78337833
NL80211_EXT_FEATURE_SAE_OFFLOAD_AP);
78347834
}
7835-
if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SAE)) {
7835+
7836+
/* FIXME: Currently our partial SAE offload is breaking with some AP's */
7837+
if (0 && brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SAE)) {
78367838
wiphy->features |= NL80211_FEATURE_SAE;
78377839
}
78387840

0 commit comments

Comments
 (0)