From: Wei Yongjun Date: Mon, 17 Oct 2016 14:56:50 +0000 (+0000) Subject: PCI: hisi: Remove redundant error message from hisi_pcie_probe() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ad719956a8487753e6514d7be3b4a6edc99e35bd;p=linux-beck.git 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: Wei Yongjun Signed-off-by: Bjorn Helgaas --- diff --git a/drivers/pci/host/pcie-hisi.c b/drivers/pci/host/pcie-hisi.c index 56154c25980c..a77b9bda1974 100644 --- a/drivers/pci/host/pcie-hisi.c +++ b/drivers/pci/host/pcie-hisi.c @@ -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)