wan: wanxl: add pci_disable_device in case of error
If there is 'no suitable DMA available' error, device should be disabled before returning Signed-off-by: Saurabh Sengar <saurabh.truth@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7772f773dc
commit
7e074af227
|
@ -586,6 +586,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev,
|
|||
if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(28)) ||
|
||||
pci_set_dma_mask(pdev, DMA_BIT_MASK(28))) {
|
||||
pr_err("No usable DMA configuration\n");
|
||||
pci_disable_device(pdev);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue