diff options
author | Constantine Shulyupin <const@ctera.com> | 2015-06-26 10:47:44 -0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2015-07-01 16:56:27 -0400 |
commit | 56172d81a9bc37a69b95dd627b8d48135c9c7b31 (patch) | |
tree | 239c981459bccf797e80335d4222d982a4d09363 | |
parent | 9026cae1c6d6c288dff0dc1d8350a949432819d8 (diff) |
hwmon: (nct7802) fix visibility of temp3
Excerpt from datasheet:
7.2.32 Mode Selection Register
RTD3_MD : 00=Closed , 01=Reserved , 10=Thermistor mode , 11=Voltage sense
Show temp3 only in Thermistor mode
Cc: stable@vger.kernel.org # v3.19+
Signed-off-by: Constantine Shulyupin <const@MakeLinux.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r-- | drivers/hwmon/nct7802.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/nct7802.c b/drivers/hwmon/nct7802.c index 55765790907b..28fcb2e246d5 100644 --- a/drivers/hwmon/nct7802.c +++ b/drivers/hwmon/nct7802.c | |||
@@ -547,7 +547,7 @@ static umode_t nct7802_temp_is_visible(struct kobject *kobj, | |||
547 | if (index >= 9 && index < 18 && | 547 | if (index >= 9 && index < 18 && |
548 | (reg & 0x0c) != 0x04 && (reg & 0x0c) != 0x08) /* RD2 */ | 548 | (reg & 0x0c) != 0x04 && (reg & 0x0c) != 0x08) /* RD2 */ |
549 | return 0; | 549 | return 0; |
550 | if (index >= 18 && index < 27 && (reg & 0x30) != 0x10) /* RD3 */ | 550 | if (index >= 18 && index < 27 && (reg & 0x30) != 0x20) /* RD3 */ |
551 | return 0; | 551 | return 0; |
552 | if (index >= 27 && index < 35) /* local */ | 552 | if (index >= 27 && index < 35) /* local */ |
553 | return attr->mode; | 553 | return attr->mode; |