diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-05-10 08:17:11 +0000 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-05-20 23:35:52 +0800 |
commit | c28f692c6f5a836dc628fb6990fb4d3d1859f779 (patch) | |
tree | 872ff7a727796c4eed8b6b7075b0b100299a321b /drivers/thermal/exynos_thermal.c | |
parent | c240a539df4e2d50f86e2f31813ff6b7334cd493 (diff) | |
download | linux-c28f692c6f5a836dc628fb6990fb4d3d1859f779.tar.gz linux-c28f692c6f5a836dc628fb6990fb4d3d1859f779.tar.bz2 linux-c28f692c6f5a836dc628fb6990fb4d3d1859f779.zip |
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>
Acked-by: Eduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal/exynos_thermal.c')
-rw-r--r-- | drivers/thermal/exynos_thermal.c | 5 |
1 files changed, 0 insertions, 5 deletions
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) INIT_WORK(&data->irq_work, exynos_tmu_work); data->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); - if (!data->mem) { - dev_err(&pdev->dev, "Failed to get platform resource\n"); - return -ENOENT; - } - data->base = devm_ioremap_resource(&pdev->dev, data->mem); if (IS_ERR(data->base)) return PTR_ERR(data->base); |