Skip to content

Commit

Permalink
mt76: remove variable 'val' set but not used
Browse files Browse the repository at this point in the history
Fixes gcc '-Wunused-but-set-variable' warning:

drivers/net/wireless/mediatek/mt76/mt76x0/phy.c: In function mt76x0_phy_rf_init:
drivers/net/wireless/mediatek/mt76/mt76x0/phy.c:1158:5: warning: variable val set but not used [-Wunused-but-set-variable]

Fixes: 10de7a8b4ab9 ("mt76x0: phy files")
Signed-off-by: Chen Wandun <chenwandun@huawei.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
Chen Wandun authored and nbd168 committed Mar 12, 2020
1 parent bef8f8a commit 89bd719
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mt76x0/phy.c
Expand Up @@ -1155,7 +1155,6 @@ static void mt76x0_rf_patch_reg_array(struct mt76x02_dev *dev,
static void mt76x0_phy_rf_init(struct mt76x02_dev *dev)
{
int i;
u8 val;

mt76x0_rf_patch_reg_array(dev, mt76x0_rf_central_tab,
ARRAY_SIZE(mt76x0_rf_central_tab));
Expand Down Expand Up @@ -1188,7 +1187,7 @@ static void mt76x0_phy_rf_init(struct mt76x02_dev *dev)
*/
mt76x0_rf_wr(dev, MT_RF(0, 22),
min_t(u8, dev->cal.rx.freq_offset, 0xbf));
val = mt76x0_rf_rr(dev, MT_RF(0, 22));
mt76x0_rf_rr(dev, MT_RF(0, 22));

/* Reset procedure DAC during power-up:
* - set B0.R73<7>
Expand Down

0 comments on commit 89bd719

Please sign in to comment.