Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2701
b: refs/heads/master
c: ec5ce55
h: refs/heads/master
i:
  2699: 102dba7
v: v3
  • Loading branch information
Jean Delvare authored and Greg Kroah-Hartman committed Jun 22, 2005
1 parent 2358a23 commit ecce268
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b9110b1c893f45ec66ae39e359decdfad84525be
refs/heads/master: ec5ce552d946a55c1e504054627c9068fb7afb8a
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/chips/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ config SENSORS_SMSC47M1
help
If you say yes here you get support for the integrated fan
monitoring and control capabilities of the SMSC LPC47B27x,
LPC47M10x, LPC47M13x and LPC47M14x chips.
LPC47M10x, LPC47M13x, LPC47M14x, LPC47M15x and LPC47M192 chips.

This driver can also be built as a module. If so, the module
will be called smsc47m1.
Expand Down
10 changes: 6 additions & 4 deletions trunk/drivers/i2c/chips/smsc47m1.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,14 +372,16 @@ static int smsc47m1_find(int *address)
* SMSC LPC47M10x/LPC47M13x (device id 0x59), LPC47M14x (device id
* 0x5F) and LPC47B27x (device id 0x51) have fan control.
* The LPC47M15x and LPC47M192 chips "with hardware monitoring block"
* can do much more besides (device id 0x60, unsupported).
* can do much more besides (device id 0x60).
*/
if (val == 0x51)
printk(KERN_INFO "smsc47m1: Found SMSC47B27x\n");
printk(KERN_INFO "smsc47m1: Found SMSC LPC47B27x\n");
else if (val == 0x59)
printk(KERN_INFO "smsc47m1: Found SMSC47M10x/SMSC47M13x\n");
printk(KERN_INFO "smsc47m1: Found SMSC LPC47M10x/LPC47M13x\n");
else if (val == 0x5F)
printk(KERN_INFO "smsc47m1: Found SMSC47M14x\n");
printk(KERN_INFO "smsc47m1: Found SMSC LPC47M14x\n");
else if (val == 0x60)
printk(KERN_INFO "smsc47m1: Found SMSC LPC47M15x/LPC47M192\n");
else {
superio_exit();
return -ENODEV;
Expand Down

0 comments on commit ecce268

Please sign in to comment.