[PATCH] pinctrl: berlin: bg4ct: Use devm_platform_*ioremap_resource() APIs

zhaoxiao posted 1 patch 3 years, 11 months ago
drivers/pinctrl/berlin/berlin-bg4ct.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
[PATCH] pinctrl: berlin: bg4ct: Use devm_platform_*ioremap_resource() APIs
Posted by zhaoxiao 3 years, 11 months ago
Use devm_platform_get_and_ioremap_resource() and
devm_platform_ioremap_resource() APIs instead of their
open coded analogues.

Signed-off-by: zhaoxiao <zhaoxiao@uniontech.com>
---
 drivers/pinctrl/berlin/berlin-bg4ct.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/pinctrl/berlin/berlin-bg4ct.c b/drivers/pinctrl/berlin/berlin-bg4ct.c
index 6a7fe929a68b..3026a3b3da2d 100644
--- a/drivers/pinctrl/berlin/berlin-bg4ct.c
+++ b/drivers/pinctrl/berlin/berlin-bg4ct.c
@@ -460,8 +460,7 @@ static int berlin4ct_pinctrl_probe(struct platform_device *pdev)
 	if (!rmconfig)
 		return -ENOMEM;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(&pdev->dev, res);
+	base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.20.1
Re: [PATCH] pinctrl: berlin: bg4ct: Use devm_platform_*ioremap_resource() APIs
Posted by Linus Walleij 3 years, 11 months ago
On Fri, May 20, 2022 at 7:20 AM zhaoxiao <zhaoxiao@uniontech.com> wrote:

> Use devm_platform_get_and_ioremap_resource() and
> devm_platform_ioremap_resource() APIs instead of their
> open coded analogues.
>
> Signed-off-by: zhaoxiao <zhaoxiao@uniontech.com>

Patch applied!

Yours,
Linus Walleij