From 2ed6f97e56ed7f273f7ab858f55ece469a5022ee Mon Sep 17 00:00:00 2001 From: Pengpeng Hou Date: Sat, 4 Jul 2026 23:15:43 +0800 Subject: [PATCH] hwmon: (acbel-fsg032) Add missing MODULE_DEVICE_TABLE() The driver has a match table for the i2c bus wired into its driver structure, but the table is not exported with MODULE_DEVICE_TABLE(). Add the missing MODULE_DEVICE_TABLE() entry so module alias information is generated for automatic module loading. This is a source-level fix. It does not claim dynamic hardware reproduction; the evidence is the driver-owned match table, its use by the driver registration structure, and the missing module alias publication. Signed-off-by: Pengpeng Hou Link: https://lore.kernel.org/r/20260704151543.35069-1-pengpeng@iscas.ac.cn Signed-off-by: Guenter Roeck --- drivers/hwmon/pmbus/acbel-fsg032.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hwmon/pmbus/acbel-fsg032.c b/drivers/hwmon/pmbus/acbel-fsg032.c index d283005d92ae..5222e7aeca44 100644 --- a/drivers/hwmon/pmbus/acbel-fsg032.c +++ b/drivers/hwmon/pmbus/acbel-fsg032.c @@ -52,6 +52,7 @@ static const struct i2c_device_id acbel_fsg032_id[] = { { .name = "acbel_fsg032" }, { } }; +MODULE_DEVICE_TABLE(i2c, acbel_fsg032_id); static struct pmbus_driver_info acbel_fsg032_info = { .pages = 1,