Commit ad719956 authored by Wei Yongjun's avatar Wei Yongjun Committed by Bjorn Helgaas
Browse files

PCI: hisi: Remove redundant error message from hisi_pcie_probe()



There is an error message from devm_ioremap_resource() already, so remove
the dev_err() call to avoid redundant error messages.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 1001354c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -185,10 +185,8 @@ static int hisi_pcie_probe(struct platform_device *pdev)

	reg = platform_get_resource_byname(pdev, IORESOURCE_MEM, "rc_dbi");
	pp->dbi_base = devm_ioremap_resource(dev, reg);
	if (IS_ERR(pp->dbi_base)) {
		dev_err(dev, "cannot get rc_dbi base\n");
	if (IS_ERR(pp->dbi_base))
		return PTR_ERR(pp->dbi_base);
	}

	ret = hisi_add_pcie_port(hisi_pcie, pdev);
	if (ret)