Skip to content

Commit 28d8eb3

Browse files
bbkzzlinusw
authored andcommitted
pinctrl: berlin: as370: 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-1-frank.li@vivo.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
1 parent 1e46c74 commit 28d8eb3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/pinctrl/berlin/pinctrl-as370.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,7 @@ static int as370_pinctrl_probe(struct platform_device *pdev)
341341
if (!rmconfig)
342342
return -ENOMEM;
343343

344-
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
345-
base = devm_ioremap_resource(&pdev->dev, res);
344+
base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
346345
if (IS_ERR(base))
347346
return PTR_ERR(base);
348347

0 commit comments

Comments
 (0)