mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-11 21:28:43 +07:00
qtnfmac: fix error return code in qtnf_pcie_probe()
[ Upstream commit 31e07aa33fa7cdc93fa91c3f78f031e8d38862c2 ]
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: b7da53cd6c
("qtnfmac_pcie: use single PCIe driver for all platforms")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20201114123347.29632-1-wanghai38@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
15e39825a2
commit
71a0eb78d6
@ -299,19 +299,19 @@ static int qtnf_pcie_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
sysctl_bar = qtnf_map_bar(pdev, QTN_SYSCTL_BAR);
|
||||
if (IS_ERR(sysctl_bar)) {
|
||||
pr_err("failed to map BAR%u\n", QTN_SYSCTL_BAR);
|
||||
return ret;
|
||||
return PTR_ERR(sysctl_bar);
|
||||
}
|
||||
|
||||
dmareg_bar = qtnf_map_bar(pdev, QTN_DMA_BAR);
|
||||
if (IS_ERR(dmareg_bar)) {
|
||||
pr_err("failed to map BAR%u\n", QTN_DMA_BAR);
|
||||
return ret;
|
||||
return PTR_ERR(dmareg_bar);
|
||||
}
|
||||
|
||||
epmem_bar = qtnf_map_bar(pdev, QTN_SHMEM_BAR);
|
||||
if (IS_ERR(epmem_bar)) {
|
||||
pr_err("failed to map BAR%u\n", QTN_SHMEM_BAR);
|
||||
return ret;
|
||||
return PTR_ERR(epmem_bar);
|
||||
}
|
||||
|
||||
chipid = qtnf_chip_id_get(sysctl_bar);
|
||||
|
Loading…
Reference in New Issue
Block a user