[PATCH] mfd: arizona-i2c: add the missing device table IDs for of

From: André Apitzsch
Date: Sun Mar 19 2023 - 08:44:06 EST


This patch adds missing MODULE_DEVICE_TABLE definition
which generates correct modalias for automatic loading
of this driver when it is built as a module.

Signed-off-by: André Apitzsch <git@xxxxxxxxxxx>
---
drivers/mfd/arizona-i2c.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/arizona-i2c.c b/drivers/mfd/arizona-i2c.c
index b2301586adbc..43e393c8608d 100644
--- a/drivers/mfd/arizona-i2c.c
+++ b/drivers/mfd/arizona-i2c.c
@@ -112,6 +112,7 @@ static const struct of_device_id arizona_i2c_of_match[] = {
{ .compatible = "wlf,wm1814", .data = (void *)WM1814 },
{},
};
+MODULE_DEVICE_TABLE(of, arizona_i2c_of_match);
#endif

static struct i2c_driver arizona_i2c_driver = {
--
2.40.0