reset: brcmstb-rescal: Use devm_platform_ioremap_resource()
authorYe Xingchen <ye.xingchen@zte.com.cn>
Thu, 16 Feb 2023 02:52:12 +0000 (10:52 +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>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/202302161052126378140@zte.com.cn
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/reset/reset-brcmstb-rescal.c

index 433fa0c40e477f8770229aeeb48c7c90a63c222e..823317772bacfa6d1695c922f0bb31a223fc6823 100644 (file)
@@ -66,14 +66,12 @@ static const struct reset_control_ops brcm_rescal_reset_ops = {
 static int brcm_rescal_reset_probe(struct platform_device *pdev)
 {
        struct brcm_rescal_reset *data;
-       struct resource *res;
 
        data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
        if (!data)
                return -ENOMEM;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       data->base = devm_ioremap_resource(&pdev->dev, res);
+       data->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(data->base))
                return PTR_ERR(data->base);