diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 15:07:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 15:07:28 -0400 |
commit | 36f021b579d195cdc5fa6f3e2bab198b4bf70643 (patch) | |
tree | 96d3c97f5e5214d2aa7151c12a22a7eb345dbaa1 /drivers/hwmon/smsc47m192.c | |
parent | 215d06780d13fd7de629b02b61b7b7bf88ce5039 (diff) | |
parent | 1d72acf91abb327e25137ad2e371c1a788b34e45 (diff) |
Merge branch 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6
* 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6: (32 commits)
Use menuconfig objects - hwmon
hwmon/smsc47b397: Use dynamic sysfs callbacks
hwmon/smsc47b397: Convert to a platform driver
hwmon/w83781d: Deprecate W83627HF support
hwmon/w83781d: Use dynamic sysfs callbacks
hwmon/w83781d: Be less i2c_client-centric
hwmon/w83781d: Clean up conversion macros
hwmon/w83781d: No longer use i2c-isa
hwmon/ams: Do not print error on systems without apple motion sensor
hwmon/ams: Fix I2C read retry logic
hwmon: New AD7416, AD7417 and AD7418 driver
hwmon/coretemp: Add documentation
hwmon: New coretemp driver
i386: Use functions from library in msr driver
i386: Add safe variants of rdmsr_on_cpu and wrmsr_on_cpu
hwmon/lm75: Use dynamic sysfs callbacks
hwmon/lm78: Use dynamic sysfs callbacks
hwmon/lm78: Be less i2c_client-centric
hwmon/lm78: No longer use i2c-isa
hwmon: New max6650 driver
...
Diffstat (limited to 'drivers/hwmon/smsc47m192.c')
-rw-r--r-- | drivers/hwmon/smsc47m192.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/smsc47m192.c b/drivers/hwmon/smsc47m192.c index a6833f437395..a012f396f354 100644 --- a/drivers/hwmon/smsc47m192.c +++ b/drivers/hwmon/smsc47m192.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | smsc47m192.c - Support for hardware monitoring block of | 2 | smsc47m192.c - Support for hardware monitoring block of |
3 | SMSC LPC47M192 and LPC47M997 Super I/O chips | 3 | SMSC LPC47M192 and compatible Super I/O chips |
4 | 4 | ||
5 | Copyright (C) 2006 Hartmut Rick <linux@rick.claranet.de> | 5 | Copyright (C) 2006 Hartmut Rick <linux@rick.claranet.de> |
6 | 6 | ||
@@ -518,7 +518,7 @@ static int smsc47m192_detect(struct i2c_adapter *adapter, int address, | |||
518 | && (i2c_smbus_read_byte_data(client, | 518 | && (i2c_smbus_read_byte_data(client, |
519 | SMSC47M192_REG_VID4) & 0xfe) == 0x80) { | 519 | SMSC47M192_REG_VID4) & 0xfe) == 0x80) { |
520 | dev_info(&adapter->dev, | 520 | dev_info(&adapter->dev, |
521 | "found SMSC47M192 or SMSC47M997, " | 521 | "found SMSC47M192 or compatible, " |
522 | "version 2, stepping A%d\n", version & 0x0f); | 522 | "version 2, stepping A%d\n", version & 0x0f); |
523 | } else { | 523 | } else { |
524 | dev_dbg(&adapter->dev, | 524 | dev_dbg(&adapter->dev, |