From: Guenter Roeck <linux@roeck-us.net>
To: Constantine Shulyupin <const@MakeLinux.com>,
jdelvare@suse.de, lm-sensors@lm-sensors.org,
linux-kernel@vger.kernel.org
Subject: Re: [lm-sensors] [PATCH] fix nct7802_temp_is_visible
Date: Thu, 25 Jun 2015 00:00:06 +0000 [thread overview]
Message-ID: <558B4486.9070802@roeck-us.net> (raw)
In-Reply-To: <1435186051-10196-1-git-send-email-const@MakeLinux.com>
Hi Constantine,
On 06/24/2015 03:47 PM, Constantine Shulyupin wrote:
> From: const <const@makelinux.com>
>
> Fixed registers are invisible only when registers' mode is 0
>
> Signed-off-by: Constantine Shulyupin <const@MakeLinux.com>
> ---
> drivers/hwmon/nct7802.c | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/hwmon/nct7802.c b/drivers/hwmon/nct7802.c
> index ec56782..65e40c2 100644
> --- a/drivers/hwmon/nct7802.c
> +++ b/drivers/hwmon/nct7802.c
> @@ -541,13 +541,11 @@ static umode_t nct7802_temp_is_visible(struct kobject *kobj,
> if (err < 0)
> return 0;
>
> - if (index < 9 &&
> - (reg & 03) != 0x01 && (reg & 0x03) != 0x02) /* RD1 */
> + if (index < 9 && !(reg & 0x03)) /* RD1 */
> return 0;
> - if (index >= 9 && index < 18 &&
> - (reg & 0x0c) != 0x04 && (reg & 0x0c) != 0x08) /* RD2 */
> + if (index >= 9 && index < 18 && !(reg & 0x0c)) /* RD2 */
> return 0;
> - if (index >= 18 && index < 27 && (reg & 0x30) != 0x10) /* RD3 */
> + if (index >= 18 && index < 27 && !(reg & 0x30)) /* RD3 */
11b sets a sensor to voltage sense mode, not temperature mode.
This is what the inX attributes are for. We can not just display a
random temperature value if a sensor is configured to measure a voltage.
According to my datasheet, 01b (0x10 shifted) is reserved for RD3.
So there is a bug, but it is
if (index >= 18 && index < 27 && (reg & 0x30) != 0x10) /* RD3 */
which should be
if (index >= 18 && index < 27 && (reg & 0x30) != 0x20) /* RD3 */
Can you send an updated patch ?
Thanks,
Guenter
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
WARNING: multiple messages have this Message-ID (diff)
From: Guenter Roeck <linux@roeck-us.net>
To: Constantine Shulyupin <const@MakeLinux.com>,
jdelvare@suse.de, lm-sensors@lm-sensors.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] fix nct7802_temp_is_visible
Date: Wed, 24 Jun 2015 17:00:06 -0700 [thread overview]
Message-ID: <558B4486.9070802@roeck-us.net> (raw)
In-Reply-To: <1435186051-10196-1-git-send-email-const@MakeLinux.com>
Hi Constantine,
On 06/24/2015 03:47 PM, Constantine Shulyupin wrote:
> From: const <const@makelinux.com>
>
> Fixed registers are invisible only when registers' mode is 0
>
> Signed-off-by: Constantine Shulyupin <const@MakeLinux.com>
> ---
> drivers/hwmon/nct7802.c | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/hwmon/nct7802.c b/drivers/hwmon/nct7802.c
> index ec56782..65e40c2 100644
> --- a/drivers/hwmon/nct7802.c
> +++ b/drivers/hwmon/nct7802.c
> @@ -541,13 +541,11 @@ static umode_t nct7802_temp_is_visible(struct kobject *kobj,
> if (err < 0)
> return 0;
>
> - if (index < 9 &&
> - (reg & 03) != 0x01 && (reg & 0x03) != 0x02) /* RD1 */
> + if (index < 9 && !(reg & 0x03)) /* RD1 */
> return 0;
> - if (index >= 9 && index < 18 &&
> - (reg & 0x0c) != 0x04 && (reg & 0x0c) != 0x08) /* RD2 */
> + if (index >= 9 && index < 18 && !(reg & 0x0c)) /* RD2 */
> return 0;
> - if (index >= 18 && index < 27 && (reg & 0x30) != 0x10) /* RD3 */
> + if (index >= 18 && index < 27 && !(reg & 0x30)) /* RD3 */
11b sets a sensor to voltage sense mode, not temperature mode.
This is what the inX attributes are for. We can not just display a
random temperature value if a sensor is configured to measure a voltage.
According to my datasheet, 01b (0x10 shifted) is reserved for RD3.
So there is a bug, but it is
if (index >= 18 && index < 27 && (reg & 0x30) != 0x10) /* RD3 */
which should be
if (index >= 18 && index < 27 && (reg & 0x30) != 0x20) /* RD3 */
Can you send an updated patch ?
Thanks,
Guenter
next prev parent reply other threads:[~2015-06-25 0:00 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-24 22:47 [lm-sensors] [PATCH] fix nct7802_temp_is_visible Constantine Shulyupin
2015-06-24 22:47 ` Constantine Shulyupin
2015-06-25 0:00 ` Guenter Roeck [this message]
2015-06-25 0:00 ` Guenter Roeck
2015-06-25 17:10 ` [lm-sensors] " Constantine Shulyupin
2015-06-25 17:18 ` Guenter Roeck
2015-06-25 17:18 ` Guenter Roeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=558B4486.9070802@roeck-us.net \
--to=linux@roeck-us.net \
--cc=const@MakeLinux.com \
--cc=jdelvare@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=lm-sensors@lm-sensors.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.