Use devm_ioremap_resource() because devm_request_and_ioremap() is
obsoleted by devm_ioremap_resource().

Signed-off-by: Jingoo Han <jg1....@samsung.com>
---
 drivers/mfd/ipaq-micro.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/mfd/ipaq-micro.c b/drivers/mfd/ipaq-micro.c
index 1763d6d..5d08daf 100644
--- a/drivers/mfd/ipaq-micro.c
+++ b/drivers/mfd/ipaq-micro.c
@@ -403,17 +403,17 @@ static int micro_probe(struct platform_device *pdev)
        if (!res)
                return -EINVAL;
 
-       micro->base = devm_request_and_ioremap(&pdev->dev, res);
-       if (!micro->base)
-               return -ENOMEM;
+       micro->base = devm_ioremap_resource(&pdev->dev, res);
+       if (IS_ERR(micro->base))
+               return PTR_ERR(micro->base);
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
        if (!res)
                return -EINVAL;
 
-       micro->sdlc = devm_request_and_ioremap(&pdev->dev, res);
-       if (!micro->sdlc)
-               return -ENOMEM;
+       micro->sdlc = devm_ioremap_resource(&pdev->dev, res);
+       if (IS_ERR(micro->sdlc))
+               return PTR_ERR(micro->sdlc);
 
        micro_reset_comm(micro);
 
-- 
1.7.10.4


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to