Unverified Commit f25bb69e authored by Yang Yingliang's avatar Yang Yingliang Committed by Mark Brown
Browse files

ASoC: fsl_esai: Use devm_platform_get_and_ioremap_resource()



Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20210615013922.784296-5-yangyingliang@huawei.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 2cd16cf0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -969,8 +969,7 @@ static int fsl_esai_probe(struct platform_device *pdev)
	esai_priv->soc = of_device_get_match_data(&pdev->dev);

	/* Get the addresses and IRQ */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	regs = devm_ioremap_resource(&pdev->dev, res);
	regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
	if (IS_ERR(regs))
		return PTR_ERR(regs);