[PATCH -next] firmware: stratix10-svc: fix module autoloading

Liao Chen posted 1 patch 1 year, 5 months ago
drivers/firmware/stratix10-svc.c | 1 +
1 file changed, 1 insertion(+)
[PATCH -next] firmware: stratix10-svc: fix module autoloading
Posted by Liao Chen 1 year, 5 months ago
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
based on the alias from of_device_id table.

Signed-off-by: Liao Chen <liaochen4@huawei.com>
---
 drivers/firmware/stratix10-svc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/firmware/stratix10-svc.c b/drivers/firmware/stratix10-svc.c
index 528f37417aea..d7d6b1d771df 100644
--- a/drivers/firmware/stratix10-svc.c
+++ b/drivers/firmware/stratix10-svc.c
@@ -1122,6 +1122,7 @@ static const struct of_device_id stratix10_svc_drv_match[] = {
 	{.compatible = "intel,agilex-svc"},
 	{},
 };
+MODULE_DEVICE_TABLE(of, stratix10_svc_drv_match);
 
 static int stratix10_svc_drv_probe(struct platform_device *pdev)
 {
-- 
2.34.1