b43: Implement RFKILL status for LP PHY
The LP (and probably N) PHY has the same radio disabled bit as the higher-revision A and G PHYs. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
4963cceea8
commit
692e565e4b
@@ -28,7 +28,7 @@
|
|||||||
/* Returns TRUE, if the radio is enabled in hardware. */
|
/* Returns TRUE, if the radio is enabled in hardware. */
|
||||||
bool b43_is_hw_radio_enabled(struct b43_wldev *dev)
|
bool b43_is_hw_radio_enabled(struct b43_wldev *dev)
|
||||||
{
|
{
|
||||||
if (dev->phy.rev >= 3) {
|
if (dev->phy.rev >= 3 || dev->phy.type == B43_PHYTYPE_LP) {
|
||||||
if (!(b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI)
|
if (!(b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI)
|
||||||
& B43_MMIO_RADIO_HWENABLED_HI_MASK))
|
& B43_MMIO_RADIO_HWENABLED_HI_MASK))
|
||||||
return 1;
|
return 1;
|
||||||
|
Reference in New Issue
Block a user