[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-id: <001d01cf6f23$00900250$01b006f0$%han@samsung.com>
Date: Wed, 14 May 2014 12:17:14 +0900
From: Jingoo Han <jg1.han@...sung.com>
To: 'Lee Jones' <lee.jones@...aro.org>
Cc: linux-kernel@...r.kernel.org,
'Samuel Ortiz' <sameo@...ux.intel.com>,
'Linus Walleij' <linus.walleij@...aro.org>,
'Jingoo Han' <jg1.han@...sung.com>
Subject: [PATCH] mfd: ipaq-micro: Use devm_ioremap_resource()
Use devm_ioremap_resource() because devm_request_and_ioremap() is
obsoleted by devm_ioremap_resource().
Signed-off-by: Jingoo Han <jg1.han@...sung.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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists