spi: pxa2xx: Simplify with devm_platform_get_and_ioremap_resource()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 17 Oct 2022 17:12:38 +0000 (20:12 +0300)
committerMark Brown <broonie@kernel.org>
Tue, 18 Oct 2022 18:16:51 +0000 (19:16 +0100)
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.

No functional changes.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20221017171243.57078-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pxa2xx.c

index 2bf21c2..03ed6d4 100644 (file)
@@ -1482,8 +1482,7 @@ pxa2xx_spi_init_pdata(struct platform_device *pdev)
 
        ssp = &pdata->ssp;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       ssp->mmio_base = devm_ioremap_resource(&pdev->dev, res);
+       ssp->mmio_base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
        if (IS_ERR(ssp->mmio_base))
                return ERR_CAST(ssp->mmio_base);