Unverified Commit 0d356c18 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mark Brown
Browse files

ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval



device_get_match_data() in ACPI case calls similar to acpi_match_device().
Hence there is no need to duplicate the call. Just assign what is in
the id->driver_data.

Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20220705161102.76250-1-andriy.shevchenko@linux.intel.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent fb617612
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -681,11 +681,8 @@ static int sof_broadwell_probe(struct platform_device *pdev)
		return -ENODEV;
	}

	desc = device_get_match_data(dev);
	if (!desc)
		return -ENODEV;

	return sof_acpi_probe(pdev, device_get_match_data(dev));
	desc = (const struct sof_dev_desc *)id->driver_data;
	return sof_acpi_probe(pdev, desc);
}

/* acpi_driver definition */