1
0
Fork 0

mfd: ipaq-micro: Use devm_platform_ioremap_resource() in micro_probe()

Simplify this function implementation by using a known wrapper function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
alistair/sunxi64-5.5-dsi
Markus Elfring 2019-09-18 13:40:30 +02:00 committed by Lee Jones
parent eeb86ed3ea
commit f20781e5f3
1 changed files with 1 additions and 5 deletions

View File

@ -396,11 +396,7 @@ static int __init micro_probe(struct platform_device *pdev)
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_ioremap_resource(&pdev->dev, res);
micro->sdlc = devm_platform_ioremap_resource(pdev, 1);
if (IS_ERR(micro->sdlc))
return PTR_ERR(micro->sdlc);