Unverified Commit 8e660f30 authored by Amadeusz Sławiński's avatar Amadeusz Sławiński Committed by Mark Brown
Browse files

ASoC: Intel: avs: max98373: Add proper id_table

parent f1e9f4f5
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -192,15 +192,23 @@ static int avs_max98373_probe(struct platform_device *pdev)
	return devm_snd_soc_register_card(dev, card);
}

static const struct platform_device_id avs_max98373_driver_ids[] = {
	{
		.name = "avs_max98373",
	},
	{},
};
MODULE_DEVICE_TABLE(platform, avs_max98373_driver_ids);

static struct platform_driver avs_max98373_driver = {
	.probe = avs_max98373_probe,
	.driver = {
		.name = "avs_max98373",
		.pm = &snd_soc_pm_ops,
	},
	.id_table = avs_max98373_driver_ids,
};

module_platform_driver(avs_max98373_driver)

MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:avs_max98373");