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

Commit 0f4091b9 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville
Browse files

b43: N-PHY: rev3+: correct switching analog core

parent a7a9a24d
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -3878,10 +3878,14 @@ static void b43_nphy_op_software_rfkill(struct b43_wldev *dev,
	}
}

/* http://bcm-v4.sipsolutions.net/802.11/PHY/Anacore */
static void b43_nphy_op_switch_analog(struct b43_wldev *dev, bool on)
{
	b43_phy_write(dev, B43_NPHY_AFECTL_OVER,
		      on ? 0 : 0x7FFF);
	u16 val = on ? 0 : 0x7FFF;

	if (dev->phy.rev >= 3)
		b43_phy_write(dev, B43_NPHY_AFECTL_OVER1, val);
	b43_phy_write(dev, B43_NPHY_AFECTL_OVER, val);
}

static int b43_nphy_op_switch_channel(struct b43_wldev *dev,