[PATCH] hwmon: (max6639) Publish the OF module alias
From: hpp.iscas
Date: Sat Sep 05 2026 - 09:44:45 EST
The MAX6639 I2C driver matches Device Tree devices through
max6639_of_match, but only publishes its I2C ID table. The I2C core
emits an OF modalias for a Device Tree client, which does not match
the legacy i2c:max6639 alias.
Publish the existing OF table; retain legacy I2C detection.
Fixes: f11e27383c12 ("hwmon: (max6639) Add compatible string")
Signed-off-by: hpp.iscas <hppiscas@xxxxxxx>
---
drivers/hwmon/max6639.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/hwmon/max6639.c b/drivers/hwmon/max6639.c
index dd5f4b3..bf92361 100644
--- a/drivers/hwmon/max6639.c
+++ b/drivers/hwmon/max6639.c
@@ -790,6 +790,7 @@ static const struct of_device_id max6639_of_match[] = {
{ .compatible = "maxim,max6639", },
{ },
};
+MODULE_DEVICE_TABLE(of, max6639_of_match);
static struct i2c_driver max6639_driver = {
.class = I2C_CLASS_HWMON,