mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 01:48:11 +07:00
rtw88: pci: remove set but not used variable 'ip_sel'
Fixes gcc '-Wunused-but-set-variable' warning: drivers/net/wireless/realtek/rtw88/pci.c: In function 'rtw_pci_phy_cfg': drivers/net/wireless/realtek/rtw88/pci.c:993:6: warning: variable 'ip_sel' set but not used [-Wunused-but-set-variable] Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
de019a3bdd
commit
d1b68c1182
@ -990,7 +990,6 @@ static void rtw_pci_phy_cfg(struct rtw_dev *rtwdev)
|
||||
u16 cut;
|
||||
u16 value;
|
||||
u16 offset;
|
||||
u16 ip_sel;
|
||||
int i;
|
||||
|
||||
cut = BIT(0) << rtwdev->hal.cut_version;
|
||||
@ -1003,7 +1002,6 @@ static void rtw_pci_phy_cfg(struct rtw_dev *rtwdev)
|
||||
break;
|
||||
offset = para->offset;
|
||||
value = para->value;
|
||||
ip_sel = para->ip_sel;
|
||||
if (para->ip_sel == RTW_IP_SEL_PHY)
|
||||
rtw_mdio_write(rtwdev, offset, value, true);
|
||||
else
|
||||
@ -1018,7 +1016,6 @@ static void rtw_pci_phy_cfg(struct rtw_dev *rtwdev)
|
||||
break;
|
||||
offset = para->offset;
|
||||
value = para->value;
|
||||
ip_sel = para->ip_sel;
|
||||
if (para->ip_sel == RTW_IP_SEL_PHY)
|
||||
rtw_mdio_write(rtwdev, offset, value, false);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user