reset: axs10x: Use devm_platform_ioremap_resource()
authorYe Xingchen <ye.xingchen@zte.com.cn>
Thu, 16 Feb 2023 02:50:33 +0000 (10:50 +0800)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Mon, 8 May 2023 07:28:31 +0000 (09:28 +0200)
Convert platform_get_resource(), devm_ioremap_resource() to a single
call to Use devm_platform_ioremap_resource(), as this is exactly
what this function does.

Suggested-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Ye Xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/202302161050336958071@zte.com.cn
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/reset/reset-axs10x.c

index a854ef41364d60b9566c5340fa40fac6307d853f..115f69e0db3366f1c9ecdff79a4856812ea8603b 100644 (file)
@@ -44,14 +44,12 @@ static const struct reset_control_ops axs10x_reset_ops = {
 static int axs10x_reset_probe(struct platform_device *pdev)
 {
        struct axs10x_rst *rst;
-       struct resource *mem;
 
        rst = devm_kzalloc(&pdev->dev, sizeof(*rst), GFP_KERNEL);
        if (!rst)
                return -ENOMEM;
 
-       mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       rst->regs_rst = devm_ioremap_resource(&pdev->dev, mem);
+       rst->regs_rst = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(rst->regs_rst))
                return PTR_ERR(rst->regs_rst);