Commit 0bf80cbf authored by Varka Bhadram's avatar Varka Bhadram Committed by Greg Kroah-Hartman

host: ohci-spear: remove duplicate check on resource

Sanity check on resource happening with devm_ioremap_resource().
Signed-off-by: default avatarVarka Bhadram <varkab@cdac.in>
Acked-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e71827f4
...@@ -74,20 +74,15 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev) ...@@ -74,20 +74,15 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
} }
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
retval = -ENODEV;
goto err_put_hcd;
}
hcd->rsrc_start = pdev->resource[0].start;
hcd->rsrc_len = resource_size(res);
hcd->regs = devm_ioremap_resource(&pdev->dev, res); hcd->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(hcd->regs)) { if (IS_ERR(hcd->regs)) {
retval = PTR_ERR(hcd->regs); retval = PTR_ERR(hcd->regs);
goto err_put_hcd; goto err_put_hcd;
} }
hcd->rsrc_start = pdev->resource[0].start;
hcd->rsrc_len = resource_size(res);
sohci_p = to_spear_ohci(hcd); sohci_p = to_spear_ohci(hcd);
sohci_p->clk = usbh_clk; sohci_p->clk = usbh_clk;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment