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@samsung.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
dcc21cc09e
commit
63c348cb2b
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user