From: greg@kroah.com (Greg KH)
To: linux-kernel@vger.kernel.org, sensors@stimpy.netroedge.com
Subject: [PATCH] i2c driver changes for 2.5.72
Date: Thu, 19 May 2005 06:24:00 +0000 [thread overview]
Message-ID: <10559607092693@kroah.com> (raw)
In-Reply-To: <10559607093836@kroah.com>
In-Reply-To: <10559607053930@kroah.com>
ChangeSet 1.1318.3.7, 2003/06/17 15:34:14-07:00, azarah@gentoo.org
[PATCH] I2C: fix for previous W83627THF sensor chip patch
Ok, I was wrong in assuming that the W83627THF was on the I2C bus.
It is on the ISA bus, id 0x90 (thanks to Alex Van Kaam author of
MBM who corrected my assumption).
drivers/i2c/chips/w83781d.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff -Nru a/drivers/i2c/chips/w83781d.c b/drivers/i2c/chips/w83781d.c
--- a/drivers/i2c/chips/w83781d.c Wed Jun 18 11:19:21 2003
+++ b/drivers/i2c/chips/w83781d.c Wed Jun 18 11:19:21 2003
@@ -28,6 +28,7 @@
asb100 "bach" (type_name = as99127f) 0x30 0x0694 yes no
w83781d 7 3 0 3 0x10 0x5ca3 yes yes
w83627hf 9 3 2 3 0x20 0x5ca3 yes yes(LPC)
+ w83627thf 9 3 2 3 0x90 0x5ca3 no yes(LPC)
w83782d 9 3 2-4 3 0x30 0x5ca3 yes yes
w83783s 5-6 3 2 1-2 0x40 0x5ca3 yes no
w83697hf 8 2 2 2 0x60 0x5ca3 no yes(LPC)
@@ -1285,7 +1286,7 @@
kind = w83782d;
else if (val1 = 0x40 && vendid = winbond && !is_isa)
kind = w83783s;
- else if ((val1 = 0x20 || val1 = 0x72) && vendid = winbond)
+ else if ((val1 = 0x20 || val1 = 0x90) && vendid = winbond)
kind = w83627hf;
else if (val1 = 0x30 && vendid = asus && !is_isa)
kind = as99127f;
@@ -1309,7 +1310,10 @@
} else if (kind = w83783s) {
client_name = "W83783S chip";
} else if (kind = w83627hf) {
- client_name = "W83627HF chip";
+ if (val1 = 0x90)
+ client_name = "W83627THF chip";
+ else
+ client_name = "W83627HF chip";
} else if (kind = as99127f) {
client_name = "AS99127F chip";
} else if (kind = w83697hf) {
WARNING: multiple messages have this Message-ID (diff)
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.72
Date: Wed, 18 Jun 2003 11:25:09 -0700 [thread overview]
Message-ID: <10559607092693@kroah.com> (raw)
In-Reply-To: <10559607093836@kroah.com>
ChangeSet 1.1318.3.7, 2003/06/17 15:34:14-07:00, azarah@gentoo.org
[PATCH] I2C: fix for previous W83627THF sensor chip patch
Ok, I was wrong in assuming that the W83627THF was on the I2C bus.
It is on the ISA bus, id 0x90 (thanks to Alex Van Kaam author of
MBM who corrected my assumption).
drivers/i2c/chips/w83781d.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff -Nru a/drivers/i2c/chips/w83781d.c b/drivers/i2c/chips/w83781d.c
--- a/drivers/i2c/chips/w83781d.c Wed Jun 18 11:19:21 2003
+++ b/drivers/i2c/chips/w83781d.c Wed Jun 18 11:19:21 2003
@@ -28,6 +28,7 @@
asb100 "bach" (type_name = as99127f) 0x30 0x0694 yes no
w83781d 7 3 0 3 0x10 0x5ca3 yes yes
w83627hf 9 3 2 3 0x20 0x5ca3 yes yes(LPC)
+ w83627thf 9 3 2 3 0x90 0x5ca3 no yes(LPC)
w83782d 9 3 2-4 3 0x30 0x5ca3 yes yes
w83783s 5-6 3 2 1-2 0x40 0x5ca3 yes no
w83697hf 8 2 2 2 0x60 0x5ca3 no yes(LPC)
@@ -1285,7 +1286,7 @@
kind = w83782d;
else if (val1 == 0x40 && vendid == winbond && !is_isa)
kind = w83783s;
- else if ((val1 == 0x20 || val1 == 0x72) && vendid == winbond)
+ else if ((val1 == 0x20 || val1 == 0x90) && vendid == winbond)
kind = w83627hf;
else if (val1 == 0x30 && vendid == asus && !is_isa)
kind = as99127f;
@@ -1309,7 +1310,10 @@
} else if (kind == w83783s) {
client_name = "W83783S chip";
} else if (kind == w83627hf) {
- client_name = "W83627HF chip";
+ if (val1 == 0x90)
+ client_name = "W83627THF chip";
+ else
+ client_name = "W83627HF chip";
} else if (kind == as99127f) {
client_name = "AS99127F chip";
} else if (kind == w83697hf) {
next prev parent reply other threads:[~2005-05-19 6:24 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-06-18 18:24 [BK PATCH] i2c driver changes for 2.5.72 Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` [PATCH] " Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH [this message]
2005-05-19 6:24 ` Greg KH
2003-06-18 18:25 ` Greg KH
2005-05-19 6:24 ` Greg KH
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Philip Pokorny
2005-05-19 6:24 ` Greg KH
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Greg KH
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Philip Pokorny
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Philip Pokorny
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Mark M. Hoffman
2005-05-19 6:24 ` Mark D. Studebaker
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=10559607092693@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 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.