diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-05-12 09:19:51 -0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2013-05-18 05:57:30 -0400 |
commit | b948cc6161529d3efda05207225b72421ee005d1 (patch) | |
tree | 6536fe944c6b52969cefe4d9e6a0f47b1e281522 /drivers/thermal | |
parent | 4f39b5b5aeeab850ef40654a2ea2e327833aba0c (diff) |
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')
-rw-r--r-- | drivers/thermal/armada_thermal.c | 10 | ||||
-rw-r--r-- | drivers/thermal/dove_thermal.c | 4 | ||||
-rw-r--r-- | drivers/thermal/exynos_thermal.c | 5 |
3 files changed, 0 insertions, 19 deletions
diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c index 5b4d75fd7b49..54ffd64ca3f7 100644 --- a/drivers/thermal/armada_thermal.c +++ b/drivers/thermal/armada_thermal.c | |||
@@ -169,21 +169,11 @@ static int armada_thermal_probe(struct platform_device *pdev) | |||
169 | return -ENOMEM; | 169 | return -ENOMEM; |
170 | 170 | ||
171 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 171 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
172 | if (!res) { | ||
173 | dev_err(&pdev->dev, "Failed to get platform resource\n"); | ||
174 | return -ENODEV; | ||
175 | } | ||
176 | |||
177 | priv->sensor = devm_ioremap_resource(&pdev->dev, res); | 172 | priv->sensor = devm_ioremap_resource(&pdev->dev, res); |
178 | if (IS_ERR(priv->sensor)) | 173 | if (IS_ERR(priv->sensor)) |
179 | return PTR_ERR(priv->sensor); | 174 | return PTR_ERR(priv->sensor); |
180 | 175 | ||
181 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); | 176 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
182 | if (!res) { | ||
183 | dev_err(&pdev->dev, "Failed to get platform resource\n"); | ||
184 | return -ENODEV; | ||
185 | } | ||
186 | |||
187 | priv->control = devm_ioremap_resource(&pdev->dev, res); | 177 | priv->control = devm_ioremap_resource(&pdev->dev, res); |
188 | if (IS_ERR(priv->control)) | 178 | if (IS_ERR(priv->control)) |
189 | return PTR_ERR(priv->control); | 179 | return PTR_ERR(priv->control); |
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) | |||
149 | return PTR_ERR(priv->sensor); | 149 | return PTR_ERR(priv->sensor); |
150 | 150 | ||
151 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); | 151 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
152 | if (!res) { | ||
153 | dev_err(&pdev->dev, "Failed to get platform resource\n"); | ||
154 | return -ENODEV; | ||
155 | } | ||
156 | priv->control = devm_ioremap_resource(&pdev->dev, res); | 152 | priv->control = devm_ioremap_resource(&pdev->dev, res); |
157 | if (IS_ERR(priv->control)) | 153 | if (IS_ERR(priv->control)) |
158 | return PTR_ERR(priv->control); | 154 | return PTR_ERR(priv->control); |
diff --git a/drivers/thermal/exynos_thermal.c b/drivers/thermal/exynos_thermal.c index d20ce9e61403..788b1ddcac6c 100644 --- a/drivers/thermal/exynos_thermal.c +++ b/drivers/thermal/exynos_thermal.c | |||
@@ -925,11 +925,6 @@ static int exynos_tmu_probe(struct platform_device *pdev) | |||
925 | INIT_WORK(&data->irq_work, exynos_tmu_work); | 925 | INIT_WORK(&data->irq_work, exynos_tmu_work); |
926 | 926 | ||
927 | data->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 927 | data->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
928 | if (!data->mem) { | ||
929 | dev_err(&pdev->dev, "Failed to get platform resource\n"); | ||
930 | return -ENOENT; | ||
931 | } | ||
932 | |||
933 | data->base = devm_ioremap_resource(&pdev->dev, data->mem); | 928 | data->base = devm_ioremap_resource(&pdev->dev, data->mem); |
934 | if (IS_ERR(data->base)) | 929 | if (IS_ERR(data->base)) |
935 | return PTR_ERR(data->base); | 930 | return PTR_ERR(data->base); |