diff options
author | Rob Herring (Arm) <robh@kernel.org> | 2024-08-26 21:18:11 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-08-27 17:10:23 +0200 |
commit | 0830d3bbdabc4fb6ee0318142c2e81398e4815d9 (patch) | |
tree | 937979ccb55095da78bad3b4b4e0fa37bb41fb0a /drivers/hwmon | |
parent | hwmon: (ntc_thermistor) fix module autoloading (diff) | |
download | linux-0830d3bbdabc4fb6ee0318142c2e81398e4815d9.tar.xz linux-0830d3bbdabc4fb6ee0318142c2e81398e4815d9.zip |
hwmon: (stts751) Add "st" vendor prefix to "stts751" compatible string
The documented compatible string is "st,stts751", not "stts751". Even if
"stts751" was in use, there's no need to list "stts751" in the DT match
table. The I2C core will strip any vendor prefix and match against the
i2c_device_id table which has an "stts751" entry.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Message-ID: <20240826191811.1416011-1-robh@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/stts751.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/stts751.c b/drivers/hwmon/stts751.c index e7632081a1d1..f9e8b2869164 100644 --- a/drivers/hwmon/stts751.c +++ b/drivers/hwmon/stts751.c @@ -77,7 +77,7 @@ static const struct i2c_device_id stts751_id[] = { }; static const struct of_device_id __maybe_unused stts751_of_match[] = { - { .compatible = "stts751" }, + { .compatible = "st,stts751" }, { }, }; MODULE_DEVICE_TABLE(of, stts751_of_match); |