Skip to content

Commit

Permalink
mt76: mt7615: remove a stray if statement
Browse files Browse the repository at this point in the history
This if statement was supposed to be deleted, but it wasn't.  It means
that we sometimes don't set the sensitivity correctly.

Fixes: 2cad515ece8a ("mt76: mt7615: add missing settings for simultaneous dual-band support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
  • Loading branch information
Dan Carpenter authored and nbd168 committed Mar 11, 2020
1 parent a94e43f commit bef8f8a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mt7615/mac.c
Expand Up @@ -1630,7 +1630,6 @@ mt7615_mac_adjust_sensitivity(struct mt7615_phy *phy,
MT_WF_PHY_PD_OFDM(ext_phy, val));
} else {
val = *sensitivity + 256;
if (!ext_phy)
mt76_rmw(dev, MT_WF_PHY_RXTD_CCK_PD(ext_phy),
MT_WF_PHY_PD_CCK_MASK(ext_phy),
MT_WF_PHY_PD_CCK(ext_phy, val));
Expand Down

0 comments on commit bef8f8a

Please sign in to comment.