Skip to content

Commit

Permalink
usb: dwc3: omap: don't check resource with devm_ioremap_resource
Browse files Browse the repository at this point in the history
devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Wolfram Sang authored and Felipe Balbi committed Feb 18, 2014
1 parent c9f721b commit 30bbae9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/usb/dwc3/dwc3-omap.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,11 +424,6 @@ static int dwc3_omap_probe(struct platform_device *pdev)
}

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
dev_err(dev, "missing memory base resource\n");
return -EINVAL;
}

base = devm_ioremap_resource(dev, res);
if (IS_ERR(base))
return PTR_ERR(base);
Expand Down

0 comments on commit 30bbae9

Please sign in to comment.