Skip to content

Commit 2d357f2

Browse files
bbkzzlinusw
authored andcommitted
pinctrl: mvebu: Use devm_platform_get_and_ioremap_resource()
Convert platform_get_resource(), devm_ioremap_resource() to a single call to devm_platform_get_and_ioremap_resource(), as this is exactly what this function does. Signed-off-by: Yangtao Li <frank.li@vivo.com> Link: https://lore.kernel.org/r/20230704124742.9596-2-frank.li@vivo.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
1 parent 28d8eb3 commit 2d357f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/pinctrl/mvebu/pinctrl-dove.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -784,8 +784,7 @@ static int dove_pinctrl_probe(struct platform_device *pdev)
784784
}
785785
clk_prepare_enable(clk);
786786

787-
mpp_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
788-
base = devm_ioremap_resource(&pdev->dev, mpp_res);
787+
base = devm_platform_get_and_ioremap_resource(pdev, 0, &mpp_res);
789788
if (IS_ERR(base))
790789
return PTR_ERR(base);
791790

0 commit comments

Comments
 (0)