Commit 9cd9dda8 authored by Yangtao Li's avatar Yangtao Li Committed by Miquel Raynal
Browse files

mtd: rawnand: lpc32xx_mlc: Use devm_platform_get_and_ioremap_resource()



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: default avatarYangtao Li <frank.li@vivo.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20230707040622.78174-7-frank.li@vivo.com
parent 68e10224
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -695,8 +695,7 @@ static int lpc32xx_nand_probe(struct platform_device *pdev)

	host->pdev = pdev;

	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);