projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c09396e
)
brcmfmac: disable MBSS feature for BCM43362
author
Arend van Spriel
<
[email protected]
>
Fri, 20 Mar 2015 21:18:17 +0000
(22:18 +0100)
committer
Kalle Valo
<
[email protected]
>
Sat, 21 Mar 2015 06:36:07 +0000
(08:36 +0200)
The BCM43362 firmware falsely reports it is capable of providing
MBSS. As a result AP mode no longer works for this device. Therefor
disable MBSS in the driver for this chipset.
Cc:
[email protected]
# 3.19.y
Reported-by: Jorg Krause <
[email protected]
>
Reviewed-by: Hante Meuleman <
[email protected]
>
Reviewed-by: Pieter-Paul Giesberts <
[email protected]
>
Signed-off-by: Arend van Spriel <
[email protected]
>
Signed-off-by: Kalle Valo <
[email protected]
>
drivers/net/wireless/brcm80211/brcmfmac/feature.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/brcm80211/brcmfmac/feature.c
b/drivers/net/wireless/brcm80211/brcmfmac/feature.c
index defb7a44e0bc1ff554195890dcccc31bfb0c9769..7748a1ccf14fdf4a6b2864441e9b041da35558a6 100644
(file)
--- a/
drivers/net/wireless/brcm80211/brcmfmac/feature.c
+++ b/
drivers/net/wireless/brcm80211/brcmfmac/feature.c
@@
-126,7
+126,8
@@
void brcmf_feat_attach(struct brcmf_pub *drvr)
brcmf_feat_iovar_int_get(ifp, BRCMF_FEAT_MCHAN, "mchan");
if (drvr->bus_if->wowl_supported)
brcmf_feat_iovar_int_get(ifp, BRCMF_FEAT_WOWL, "wowl");
- brcmf_feat_iovar_int_set(ifp, BRCMF_FEAT_MBSS, "mbss", 0);
+ if (drvr->bus_if->chip != BRCM_CC_43362_CHIP_ID)
+ brcmf_feat_iovar_int_set(ifp, BRCMF_FEAT_MBSS, "mbss", 0);
/* set chip related quirks */
switch (drvr->bus_if->chip) {