From: Greg KH <greg@kroah.com>
To: linux-kernel@vger.kernel.org, sensors@stimpy.netroedge.com
Subject: Re: [PATCH] i2c driver changes for 2.5.67
Date: Wed, 9 Apr 2003 15:31:39 -0700 [thread overview]
Message-ID: <10499274993464@kroah.com> (raw)
In-Reply-To: <10499274991641@kroah.com>
ChangeSet 1.1133.1.3, 2003/04/08 02:49:21-07:00, azarah@gentoo.org
[PATCH] i2c: Fix w83781d sensor to use Milli-Volt for in_* in sysfs
I did the w83781d sysfs update as per the old spec, which was not
milli-volt. This patch should fix it.
drivers/i2c/chips/w83781d.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -Nru a/drivers/i2c/chips/w83781d.c b/drivers/i2c/chips/w83781d.c
--- a/drivers/i2c/chips/w83781d.c Wed Apr 9 15:16:04 2003
+++ b/drivers/i2c/chips/w83781d.c Wed Apr 9 15:16:04 2003
@@ -364,7 +364,7 @@
\
w83781d_update_client(client); \
\
- return sprintf(buf,"%ld\n", (long)IN_FROM_REG(data->reg[nr])); \
+ return sprintf(buf,"%ld\n", (long)IN_FROM_REG(data->reg[nr] * 10)); \
}
show_in_reg(in);
show_in_reg(in_min);
@@ -378,7 +378,7 @@
u32 val; \
\
val = simple_strtoul(buf, NULL, 10); \
- data->in_##reg[nr] = IN_TO_REG(val); \
+ data->in_##reg[nr] = (IN_TO_REG(val) / 10); \
w83781d_write_value(client, W83781D_REG_IN_##REG(nr), data->in_##reg[nr]); \
\
return count; \
next prev parent reply other threads:[~2003-04-09 22:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-04-09 22:31 [BK PATCH] i2c driver changes for 2.5.67 Greg KH
2003-04-09 22:31 ` [PATCH] " Greg KH
2003-04-09 22:31 ` Greg KH
2003-04-09 22:31 ` Greg KH
2003-04-09 22:31 ` Greg KH
2003-04-09 22:31 ` Greg KH
2003-04-09 22:31 ` Greg KH [this message]
2003-04-09 22:31 ` Greg KH
2003-04-09 22:31 ` Greg KH
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=10499274993464@kroah.com \
--to=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sensors@stimpy.netroedge.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox