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

ASoC: Intel: avs: nau8825: Add proper id_table

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

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

static struct platform_driver avs_nau8825_driver = {
	.probe = avs_nau8825_probe,
	.driver = {
		.name = "avs_nau8825",
		.pm = &snd_soc_pm_ops,
	},
	.id_table = avs_nau8825_driver_ids,
};

module_platform_driver(avs_nau8825_driver)

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