Skip to content

Commit ba3961c

Browse files
bbkzzmehmetb0
authored andcommitted
pinctrl: mvebu: Use devm_platform_get_and_ioremap_resource()
BugLink: https://bugs.launchpad.net/bugs/2086242 [ Upstream commit 2d357f2 ] 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> Stable-dep-of: c25478419f6f ("pinctrl: mvebu: Fix devinit_dove_pinctrl_probe function") Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Koichiro Den <koichiro.den@canonical.com> Signed-off-by: Roxana Nicolescu <roxana.nicolescu@canonical.com>
1 parent b26392a commit ba3961c

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)