Skip to content

Commit

Permalink
PCI: imx6: Remove unneeded check of platform_get_resource()
Browse files Browse the repository at this point in the history
When using devm_ioremap_resource(), we do not need to check the return
value of platform_get_resource(), so just remove it.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Marek Vasut <marex@denx.de>
  • Loading branch information
Fabio Estevam authored and Bjorn Helgaas committed Dec 9, 2013
1 parent 6ce4eac commit ebb034a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/pci/host/pci-imx6.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,11 +426,6 @@ static int __init imx6_pcie_probe(struct platform_device *pdev)
"imprecise external abort");

dbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!dbi_base) {
dev_err(&pdev->dev, "dbi_base memory resource not found\n");
return -ENODEV;
}

pp->dbi_base = devm_ioremap_resource(&pdev->dev, dbi_base);
if (IS_ERR(pp->dbi_base)) {
ret = PTR_ERR(pp->dbi_base);
Expand Down

0 comments on commit ebb034a

Please sign in to comment.