Unverified Commit 1ccf6e6e authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown
Browse files

ASoC: fsl_esai: Remove of_device_get_match_data() error check



The only way this driver can be probed is via devicetree, which always
provides driver data.

Remove the unneeded of_device_get_match_data() error check, as it
can never fail.

Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Link: https://lore.kernel.org/r/20210118123815.1630882-5-festevam@gmail.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 214172a9
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -967,10 +967,6 @@ static int fsl_esai_probe(struct platform_device *pdev)
	snprintf(esai_priv->name, sizeof(esai_priv->name), "%pOFn", np);

	esai_priv->soc = of_device_get_match_data(&pdev->dev);
	if (!esai_priv->soc) {
		dev_err(&pdev->dev, "failed to get soc data\n");
		return -ENODEV;
	}

	/* Get the addresses and IRQ */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);