diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-05-12 17:19:51 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2013-05-18 13:57:30 +0400 |
commit | b948cc6161529d3efda05207225b72421ee005d1 (patch) | |
tree | 6536fe944c6b52969cefe4d9e6a0f47b1e281522 /drivers/thermal/dove_thermal.c | |
parent | 4f39b5b5aeeab850ef40654a2ea2e327833aba0c (diff) | |
download | linux-b948cc6161529d3efda05207225b72421ee005d1.tar.xz |
drivers/thermal: 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>
Diffstat (limited to 'drivers/thermal/dove_thermal.c')
-rw-r--r-- | drivers/thermal/dove_thermal.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/thermal/dove_thermal.c b/drivers/thermal/dove_thermal.c index 4b15a5f270dc..a088d1365ca5 100644 --- a/drivers/thermal/dove_thermal.c +++ b/drivers/thermal/dove_thermal.c @@ -149,10 +149,6 @@ static int dove_thermal_probe(struct platform_device *pdev) return PTR_ERR(priv->sensor); res = platform_get_resource(pdev, IORESOURCE_MEM, 1); - if (!res) { - dev_err(&pdev->dev, "Failed to get platform resource\n"); - return -ENODEV; - } priv->control = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(priv->control)) return PTR_ERR(priv->control); |