mirror of https://gitee.com/openkylin/linux.git
mwifiex: pcie: remove unnecessary 'pdev' check
'card->dev' is initialized once and is never cleared. Drop the unnecessary "safety" check, as it simply obscures things, and we don't do this check everywhere (and therefore it's not really "safe"). Signed-off-by: Brian Norris <briannorris@chromium.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
2f47150ab3
commit
43a0c9aea6
|
@ -2971,15 +2971,12 @@ static void mwifiex_cleanup_pcie(struct mwifiex_adapter *adapter)
|
|||
"Failed to write driver not-ready signature\n");
|
||||
}
|
||||
|
||||
if (pdev) {
|
||||
pci_disable_device(pdev);
|
||||
pci_disable_device(pdev);
|
||||
|
||||
pci_iounmap(pdev, card->pci_mmap);
|
||||
pci_iounmap(pdev, card->pci_mmap1);
|
||||
pci_disable_device(pdev);
|
||||
pci_release_region(pdev, 2);
|
||||
pci_release_region(pdev, 0);
|
||||
}
|
||||
pci_iounmap(pdev, card->pci_mmap);
|
||||
pci_iounmap(pdev, card->pci_mmap1);
|
||||
pci_release_region(pdev, 2);
|
||||
pci_release_region(pdev, 0);
|
||||
|
||||
mwifiex_pcie_free_buffers(adapter);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue