mirror of https://gitee.com/openkylin/linux.git
adm80211: remove set but not used variables 'mem_addr' and 'io_addr'
Fixes gcc '-Wunused-but-set-variable' warning: drivers/net/wireless/admtek/adm8211.c:1784:16: warning: variable mem_addr set but not used [-Wunused-but-set-variable] drivers/net/wireless/admtek/adm8211.c:1785:15: warning: variable io_addr set but not used [-Wunused-but-set-variable] They are never used, so can be removed. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
091c6e9c08
commit
f64b06bd36
|
@ -1781,8 +1781,8 @@ static int adm8211_probe(struct pci_dev *pdev,
|
|||
{
|
||||
struct ieee80211_hw *dev;
|
||||
struct adm8211_priv *priv;
|
||||
unsigned long mem_addr, mem_len;
|
||||
unsigned int io_addr, io_len;
|
||||
unsigned long mem_len;
|
||||
unsigned int io_len;
|
||||
int err;
|
||||
u32 reg;
|
||||
u8 perm_addr[ETH_ALEN];
|
||||
|
@ -1794,9 +1794,7 @@ static int adm8211_probe(struct pci_dev *pdev,
|
|||
return err;
|
||||
}
|
||||
|
||||
io_addr = pci_resource_start(pdev, 0);
|
||||
io_len = pci_resource_len(pdev, 0);
|
||||
mem_addr = pci_resource_start(pdev, 1);
|
||||
mem_len = pci_resource_len(pdev, 1);
|
||||
if (io_len < 256 || mem_len < 1024) {
|
||||
printk(KERN_ERR "%s (adm8211): Too short PCI resources\n",
|
||||
|
|
Loading…
Reference in New Issue