Message ID | 20240821061955.2273782-2-lihongbo22@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0e9fdab1e8df490354562187cdbb8dec643eae2c |
Headers | show |
Series | allow modules autoloading | expand |
diff --git a/sound/soc/au1x/db1200.c b/sound/soc/au1x/db1200.c index 83a75a38705b..81abe2e18402 100644 --- a/sound/soc/au1x/db1200.c +++ b/sound/soc/au1x/db1200.c @@ -44,6 +44,7 @@ static const struct platform_device_id db1200_pids[] = { }, {}, }; +MODULE_DEVICE_TABLE(platform, db1200_pids); /*------------------------- AC97 PART ---------------------------*/
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded based on the alias from platform_device_id table. Signed-off-by: Hongbo Li <lihongbo22@huawei.com> --- sound/soc/au1x/db1200.c | 1 + 1 file changed, 1 insertion(+)