Commit 5fd43ddb authored by Guenter Roeck's avatar Guenter Roeck

hwmon: (ntc_thermistor) Fix temperature type reporting

Commit 7cc7de93 ("hwmon: (ntc_thermistor) Convert to new hwmon API")
converted the driver to use the new hwmon API, but introduced a subtle
error: The temperature type is no longer reported as temp1_type, but as
temp2_type.

Fixes: 7cc7de93 ("hwmon: (ntc_thermistor) Convert to new hwmon API")
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 8e6af454
......@@ -640,7 +640,7 @@ static const struct hwmon_channel_info ntc_chip = {
};
static const u32 ntc_temp_config[] = {
HWMON_T_INPUT, HWMON_T_TYPE,
HWMON_T_INPUT | HWMON_T_TYPE,
0
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment