diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2024-01-27 16:02:54 +0100 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-02-11 22:43:08 +0100 |
commit | e7b631d798716bba5cf1499caf62c548c7905439 (patch) | |
tree | a64629f3d48fde6d934923e2f0c58ca91be297fd /drivers/hwmon/ds620.c | |
parent | dt-bindings: hwmon: ina2xx: Describe ina260 chip (diff) | |
download | linux-e7b631d798716bba5cf1499caf62c548c7905439.tar.xz linux-e7b631d798716bba5cf1499caf62c548c7905439.zip |
hwmon: Remove I2C_CLASS_HWMON from drivers w/o detect() and address_list
Class-based I2C probing requires detect() and address_list to be
set in the I2C client driver, see checks in i2c_detect().
It's misleading to declare I2C_CLASS_HWMON support if this
precondition isn't met.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Link: https://lore.kernel.org/r/75747c6a-d414-4b07-8f66-5a5cdddc3c36@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/ds620.c')
-rw-r--r-- | drivers/hwmon/ds620.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/hwmon/ds620.c b/drivers/hwmon/ds620.c index 2b09536630cb..4fc4df012fac 100644 --- a/drivers/hwmon/ds620.c +++ b/drivers/hwmon/ds620.c @@ -241,7 +241,6 @@ MODULE_DEVICE_TABLE(i2c, ds620_id); /* This is the driver that will be inserted */ static struct i2c_driver ds620_driver = { - .class = I2C_CLASS_HWMON, .driver = { .name = "ds620", }, |