Commit 82a52043 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville

b43: fix split of N-PHY devices into supported and not (based on PHY rev)

Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent abc1f7cd
...@@ -4054,7 +4054,7 @@ static int b43_phy_versioning(struct b43_wldev *dev) ...@@ -4054,7 +4054,7 @@ static int b43_phy_versioning(struct b43_wldev *dev)
break; break;
#ifdef CONFIG_B43_NPHY #ifdef CONFIG_B43_NPHY
case B43_PHYTYPE_N: case B43_PHYTYPE_N:
if (phy_rev > 4) if (phy_rev > 2)
unsupported = 1; unsupported = 1;
break; break;
#endif #endif
......
...@@ -3515,7 +3515,6 @@ int b43_phy_initn(struct b43_wldev *dev) ...@@ -3515,7 +3515,6 @@ int b43_phy_initn(struct b43_wldev *dev)
if (phy->rev >= 3) if (phy->rev >= 3)
b43_nphy_spur_workaround(dev); b43_nphy_spur_workaround(dev);
b43err(dev->wl, "IEEE 802.11n devices are not supported, yet.\n");
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment