Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27abb2ff authored by Wei Yongjun's avatar Wei Yongjun Committed by Vinod Koul
Browse files

pch_dma: fix error return code in pch_dma_probe()



Fix to return -ENODEV when no proper base address found error
handling case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent ad81f054
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -867,6 +867,7 @@ static int pch_dma_probe(struct pci_dev *pdev,

	if (!(pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
		dev_err(&pdev->dev, "Cannot find proper base address\n");
		err = -ENODEV;
		goto err_disable_pdev;
	}