diff options
author | Naveen Krishna Chatradhi <ch.naveen@samsung.com> | 2013-08-07 08:31:09 (GMT) |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-08-15 07:00:28 (GMT) |
commit | aa1ab4347ec40da87085abaa0db18268da2d0042 (patch) | |
tree | 5bde8d1190205f83a72554835cffddefafd73a03 /drivers/thermal | |
parent | 9c532d1710326c0f6f5d46d7f78d9da1a03b7a52 (diff) | |
download | linux-aa1ab4347ec40da87085abaa0db18268da2d0042.tar.xz |
thermal: exynos_tmu: fix wrong error check for mapped memory
The error check is checking for a "base" mapped memory base
instead of "base_common". Fixing the same.
Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/samsung/exynos_tmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/samsung/exynos_tmu.c b/drivers/thermal/samsung/exynos_tmu.c index ec01dfe..a033dbb 100644 --- a/drivers/thermal/samsung/exynos_tmu.c +++ b/drivers/thermal/samsung/exynos_tmu.c @@ -592,7 +592,7 @@ static int exynos_map_dt_data(struct platform_device *pdev) data->base_common = devm_ioremap(&pdev->dev, res.start, resource_size(&res)); - if (!data->base) { + if (!data->base_common) { dev_err(&pdev->dev, "Failed to ioremap memory\n"); return -ENOMEM; } |