public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hwmon: (nct7802) fix visibility of temp3
@ 2015-06-26 14:47 Constantine Shulyupin
  2015-06-26 15:17 ` Guenter Roeck
  0 siblings, 1 reply; 2+ messages in thread
From: Constantine Shulyupin @ 2015-06-26 14:47 UTC (permalink / raw)
  To: jdelvare, linux, lm-sensors, linux-kernel; +Cc: const, Constantine Shulyupin

From: const <const@ctera.com>

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

Signed-off-by: Constantine Shulyupin <const@MakeLinux.com>
---
 drivers/hwmon/nct7802.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hwmon/nct7802.c b/drivers/hwmon/nct7802.c
index 5418417..dcca5fc 100644
--- a/drivers/hwmon/nct7802.c
+++ b/drivers/hwmon/nct7802.c
@@ -649,7 +649,7 @@ static umode_t nct7802_temp_is_visible(struct kobject *kobj,
 	if (index >= 9 && index < 18 &&
 	    (reg & 0x0c) != 0x04 && (reg & 0x0c) != 0x08)	/* RD2 */
 		return 0;
-	if (index >= 18 && index < 27 && (reg & 0x30) != 0x10)	/* RD3 */
+	if (index >= 18 && index < 27 && (reg & 0x30) != 0x20)	/* RD3 */
 		return 0;
 	if (index >= 27 && index < 35)				/* local */
 		return attr->mode;
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] hwmon: (nct7802) fix visibility of temp3
  2015-06-26 14:47 [PATCH] hwmon: (nct7802) fix visibility of temp3 Constantine Shulyupin
@ 2015-06-26 15:17 ` Guenter Roeck
  0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2015-06-26 15:17 UTC (permalink / raw)
  To: Constantine Shulyupin; +Cc: jdelvare, lm-sensors, linux-kernel, const

On Fri, Jun 26, 2015 at 05:47:44PM +0300, Constantine Shulyupin wrote:
> From: const <const@ctera.com>
> 
> 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
> 
> Signed-off-by: Constantine Shulyupin <const@MakeLinux.com>

Thanks, applied. I'll also submit the patch to -stable releases as needed.

Guenter

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-06-26 15:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-26 14:47 [PATCH] hwmon: (nct7802) fix visibility of temp3 Constantine Shulyupin
2015-06-26 15:17 ` Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox