Commit 189175e0 authored by Yangtao Li's avatar Yangtao Li Committed by Miquel Raynal
Browse files

mtd: rawnand: omap2: 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-5-frank.li@vivo.com
parent 4eef841d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2219,8 +2219,7 @@ static int omap_nand_probe(struct platform_device *pdev)
		}
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	vaddr = devm_ioremap_resource(&pdev->dev, res);
	vaddr = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
	if (IS_ERR(vaddr))
		return PTR_ERR(vaddr);