Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Rafał Miłecki and committed by
John W. Linville
82a52043 abc1f7cd

+1 -2
+1 -1
drivers/net/wireless/b43/main.c
··· 4054 4054 break; 4055 4055 #ifdef CONFIG_B43_NPHY 4056 4056 case B43_PHYTYPE_N: 4057 - if (phy_rev > 4) 4057 + if (phy_rev > 2) 4058 4058 unsupported = 1; 4059 4059 break; 4060 4060 #endif
-1
drivers/net/wireless/b43/phy_n.c
··· 3515 3515 if (phy->rev >= 3) 3516 3516 b43_nphy_spur_workaround(dev); 3517 3517 3518 - b43err(dev->wl, "IEEE 802.11n devices are not supported, yet.\n"); 3519 3518 return 0; 3520 3519 } 3521 3520