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: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Pierre-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: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
fb617612fd
commit
0d356c186f
|
@ -681,11 +681,8 @@ static int sof_broadwell_probe(struct platform_device *pdev)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
desc = device_get_match_data(dev);
|
desc = (const struct sof_dev_desc *)id->driver_data;
|
||||||
if (!desc)
|
return sof_acpi_probe(pdev, desc);
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
return sof_acpi_probe(pdev, device_get_match_data(dev));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* acpi_driver definition */
|
/* acpi_driver definition */
|
||||||
|
|
Loading…
Reference in New Issue