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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
};