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

Commit 12716cd4 authored by Wolfram Sang's avatar Wolfram Sang
Browse files

sound/soc/kirkwood: don't check resource with devm_ioremap_resource



devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.

Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 5f68d04d
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -471,11 +471,6 @@ static int kirkwood_i2s_dev_probe(struct platform_device *pdev)
	dev_set_drvdata(&pdev->dev, priv);

	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!mem) {
		dev_err(&pdev->dev, "platform_get_resource failed\n");
		return -ENXIO;
	}

	priv->io = devm_ioremap_resource(&pdev->dev, mem);
	if (IS_ERR(priv->io))
		return PTR_ERR(priv->io);