]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/video/exynos/exynos_mipi_dsi.c: convert to devm_ioremap_resource()
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 20 Mar 2013 04:06:53 +0000 (15:06 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 21 Mar 2013 05:27:14 +0000 (16:27 +1100)
Use the newly introduced devm_ioremap_resource() instead of
devm_request_and_ioremap() which provides more consistent error handling.

devm_ioremap_resource() provides its own error messages; so all explicit
error messages can be removed from the failure code paths.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Donghwa Lee <dh09.lee@samsung.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/video/exynos/exynos_mipi_dsi.c

index fac7df6d1abacb7df7967a7cf0aadc159281dff0..87cd13b5dee65248c5dc78e0001c4987d73442cc 100644 (file)
@@ -32,6 +32,7 @@
 #include <linux/notifier.h>
 #include <linux/regulator/consumer.h>
 #include <linux/pm_runtime.h>
+#include <linux/err.h>
 
 #include <video/exynos_mipi_dsim.h>
 
@@ -384,10 +385,9 @@ static int exynos_mipi_dsi_probe(struct platform_device *pdev)
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 
-       dsim->reg_base = devm_request_and_ioremap(&pdev->dev, res);
-       if (!dsim->reg_base) {
-               dev_err(&pdev->dev, "failed to remap io region\n");
-               ret = -ENOMEM;
+       dsim->reg_base = devm_ioremap_resource(&pdev->dev, res);
+       if (IS_ERR(dsim->reg_base)) {
+               ret = PTR_ERR(dsim->reg_base);
                goto error;
        }