Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9bf53ab authored by Arend Van Spriel's avatar Arend Van Spriel Committed by Kalle Valo
Browse files

brcmfmac: feature check for multi-scheduled scan fails on bcm4343x devices



The firmware feature check introduced for multi-scheduled scan turned out
to be failing for bcm4343{0,1,8} devices resulting in a firmware crash.
The reason for this crash has not yet been root cause so this patch avoids
the feature check for those device as a short-term fix.

Reported-by: default avatarStefan Wahren <stefan.wahren@i2se.com>
Reported-by: default avatarIan Molton <ian@mnementh.co.uk>
Fixes: 9fe929aa ("brcmfmac: add firmware feature detection for gscan feature")
Signed-off-by: default avatarArend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 9d6b9b8d
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -159,7 +159,9 @@ void brcmf_feat_attach(struct brcmf_pub *drvr)

	brcmf_feat_firmware_capabilities(ifp);
	memset(&gscan_cfg, 0, sizeof(gscan_cfg));
	brcmf_feat_iovar_data_set(ifp, BRCMF_FEAT_GSCAN, "pfn_gscan_cfg",
	if (drvr->bus_if->chip != BRCM_CC_43430_CHIP_ID)
		brcmf_feat_iovar_data_set(ifp, BRCMF_FEAT_GSCAN,
					  "pfn_gscan_cfg",
					  &gscan_cfg, sizeof(gscan_cfg));
	brcmf_feat_iovar_int_get(ifp, BRCMF_FEAT_PNO, "pfn");
	if (drvr->bus_if->wowl_supported)