summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2013-05-12 15:19:53 +0200
committerWolfram Sang <wsa@the-dreams.de>2013-05-18 11:58:03 +0200
commitac066a5c1c012e2a1375ff105b98b3b22fc9e7d2 (patch)
tree61ca15057e88434dfa9dfaf497ed19cd7f9dfe24
parentffc0775be17784e258836919fd3ec9c02bb6dc25 (diff)
downloadlinux-3.10-ac066a5c1c012e2a1375ff105b98b3b22fc9e7d2.tar.gz
linux-3.10-ac066a5c1c012e2a1375ff105b98b3b22fc9e7d2.tar.bz2
linux-3.10-ac066a5c1c012e2a1375ff105b98b3b22fc9e7d2.zip
drivers/w1/masters: don't check resource with devm_ioremap_resource
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>
-rw-r--r--drivers/w1/masters/omap_hdq.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c
index db2390aed38..6e94d8dd3d0 100644
--- a/drivers/w1/masters/omap_hdq.c
+++ b/drivers/w1/masters/omap_hdq.c
@@ -555,11 +555,6 @@ static int omap_hdq_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, hdq_data);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res) {
- dev_dbg(&pdev->dev, "unable to get resource\n");
- return -ENXIO;
- }
-
hdq_data->hdq_base = devm_ioremap_resource(dev, res);
if (IS_ERR(hdq_data->hdq_base))
return PTR_ERR(hdq_data->hdq_base);