Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fd7a48b authored by Fengguang Wu's avatar Fengguang Wu Committed by Mark Brown
Browse files

ASoC: axi-spdif: Use devm_ioremap_resource() instead of devm_request_and_ioremap()



devm_request_and_ioremap() has been deprecated in favour of
devm_ioremap_resource(). Fixes the following coccinelle warning:

	sound/soc/adi/axi-i2s.c:195:8-32: ERROR: deprecated devm_request_and_ioremap() API used on line 195

Generated by: coccinelle/api/devm_ioremap_resource.cocci

Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 429e4374
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -192,9 +192,9 @@ static int axi_i2s_probe(struct platform_device *pdev)
	platform_set_drvdata(pdev, i2s);
	platform_set_drvdata(pdev, i2s);


	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	base = devm_request_and_ioremap(&pdev->dev, res);
	base = devm_ioremap_resource(&pdev->dev, res);
	if (!base)
	if (IS_ERR(base))
		return -EBUSY;
		return PTR_ERR(base);


	i2s->regmap = devm_regmap_init_mmio(&pdev->dev, base,
	i2s->regmap = devm_regmap_init_mmio(&pdev->dev, base,
		&axi_i2s_regmap_config);
		&axi_i2s_regmap_config);