mtd: rawnand: lpc32xx_slc: Use devm_platform_get_and_ioremap_resource()
authorYangtao Li <frank.li@vivo.com>
Fri, 7 Jul 2023 04:06:06 +0000 (12:06 +0800)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Wed, 12 Jul 2023 12:07:44 +0000 (14:07 +0200)
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>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20230707040622.78174-2-frank.li@vivo.com
drivers/mtd/nand/raw/lpc32xx_slc.c

index 3139b6107660c540ca2f93523462355eb7f65922..2201264d3c37d3f70f49dc9b058b6926286e9dfa 100644 (file)
@@ -836,8 +836,7 @@ static int lpc32xx_nand_probe(struct platform_device *pdev)
        if (!host)
                return -ENOMEM;
 
-       rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       host->io_base = devm_ioremap_resource(&pdev->dev, rc);
+       host->io_base = devm_platform_get_and_ioremap_resource(pdev, 0, &rc);
        if (IS_ERR(host->io_base))
                return PTR_ERR(host->io_base);