mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 13:34:10 +08:00
b43: N-PHY: add missing phyrxchain setting and fix warning in RX core function
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
5effdf18aa
commit
049fbfeeb5
@ -3092,6 +3092,8 @@ static void b43_nphy_set_rx_core_state(struct b43_wldev *dev, u8 mask)
|
||||
struct b43_phy_n *nphy = phy->n;
|
||||
u16 buf[16];
|
||||
|
||||
nphy->phyrxchain = mask;
|
||||
|
||||
if (0 /* FIXME clk */)
|
||||
return;
|
||||
|
||||
@ -3103,7 +3105,7 @@ static void b43_nphy_set_rx_core_state(struct b43_wldev *dev, u8 mask)
|
||||
b43_phy_maskset(dev, B43_NPHY_RFSEQCA, ~B43_NPHY_RFSEQCA_RXEN,
|
||||
(mask & 0x3) << B43_NPHY_RFSEQCA_RXEN_SHIFT);
|
||||
|
||||
if (mask & 0x3 != 0x3) {
|
||||
if ((mask & 0x3) != 0x3) {
|
||||
b43_phy_write(dev, B43_NPHY_HPANT_SWTHRES, 1);
|
||||
if (dev->phy.rev >= 3) {
|
||||
/* TODO */
|
||||
|
Loading…
Reference in New Issue
Block a user