[PATCH -next 3/4] usb: typec: fix module autoloading
From: Liao Chen
Date: Thu Aug 22 2024 - 09:10:09 EST
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@xxxxxxxxxx>
---
drivers/usb/typec/anx7411.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/typec/anx7411.c b/drivers/usb/typec/anx7411.c
index 5a5bf3532ad7..33ff301b918f 100644
--- a/drivers/usb/typec/anx7411.c
+++ b/drivers/usb/typec/anx7411.c
@@ -1576,6 +1576,7 @@ static const struct of_device_id anx_match_table[] = {
{.compatible = "analogix,anx7411",},
{},
};
+MODULE_DEVICE_TABLE(of, anx_match_table);
static struct i2c_driver anx7411_driver = {
.driver = {
--
2.34.1