diff options
author | Mark M. Hoffman <mhoffman@lightlink.com> | 2005-10-17 17:01:45 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 17:02:11 -0400 |
commit | 7ab83a9137ccd3e092fb6ad0cb105b4d1fb617ae (patch) | |
tree | e76341e6617eac19514ce2e41768514f7c9acedb /drivers/hwmon/smsc47b397.c | |
parent | 1747ef1b8c9b7b9c6a9aae3543a9b99acabb7e10 (diff) |
[PATCH] hwmon: New device ID for the smsc47b397 driver
This patch adds a new ID to the SMSC LPC47B397-NC hardware
monitoring driver - for a chip that is claimed to be 100%
compatible otherwise.
Signed-off-by: Bryan Young (Utilitek Systems, Inc.)
Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/hwmon/smsc47b397.c')
-rw-r--r-- | drivers/hwmon/smsc47b397.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/hwmon/smsc47b397.c b/drivers/hwmon/smsc47b397.c index 7fe71576dea4..37ed8b33f01a 100644 --- a/drivers/hwmon/smsc47b397.c +++ b/drivers/hwmon/smsc47b397.c | |||
@@ -299,7 +299,7 @@ static int __init smsc47b397_find(unsigned short *addr) | |||
299 | superio_enter(); | 299 | superio_enter(); |
300 | id = superio_inb(SUPERIO_REG_DEVID); | 300 | id = superio_inb(SUPERIO_REG_DEVID); |
301 | 301 | ||
302 | if (id != 0x6f) { | 302 | if ((id != 0x6f) && (id != 0x81)) { |
303 | superio_exit(); | 303 | superio_exit(); |
304 | return -ENODEV; | 304 | return -ENODEV; |
305 | } | 305 | } |
@@ -310,8 +310,9 @@ static int __init smsc47b397_find(unsigned short *addr) | |||
310 | *addr = (superio_inb(SUPERIO_REG_BASE_MSB) << 8) | 310 | *addr = (superio_inb(SUPERIO_REG_BASE_MSB) << 8) |
311 | | superio_inb(SUPERIO_REG_BASE_LSB); | 311 | | superio_inb(SUPERIO_REG_BASE_LSB); |
312 | 312 | ||
313 | printk(KERN_INFO "smsc47b397: found SMSC LPC47B397-NC " | 313 | printk(KERN_INFO "smsc47b397: found SMSC %s " |
314 | "(base address 0x%04x, revision %u)\n", *addr, rev); | 314 | "(base address 0x%04x, revision %u)\n", |
315 | id == 0x81 ? "SCH5307-NS" : "LPC47B397-NC", *addr, rev); | ||
315 | 316 | ||
316 | superio_exit(); | 317 | superio_exit(); |
317 | return 0; | 318 | return 0; |