diff options
-rw-r--r-- | Documentation/hwmon/it87 | 4 | ||||
-rw-r--r-- | drivers/hwmon/it87.c | 12 |
2 files changed, 6 insertions, 10 deletions
diff --git a/Documentation/hwmon/it87 b/Documentation/hwmon/it87 index a45044e82662..e783fd62e308 100644 --- a/Documentation/hwmon/it87 +++ b/Documentation/hwmon/it87 | |||
@@ -29,7 +29,9 @@ Supported chips: | |||
29 | Addresses scanned: from Super I/O config space (8 I/O ports) | 29 | Addresses scanned: from Super I/O config space (8 I/O ports) |
30 | Datasheet: No longer be available | 30 | Datasheet: No longer be available |
31 | 31 | ||
32 | Author: Christophe Gauthron <chrisg@0-in.com> | 32 | Authors: |
33 | Christophe Gauthron <chrisg@0-in.com> | ||
34 | Jean Delvare <khali@linux-fr.org> | ||
33 | 35 | ||
34 | 36 | ||
35 | Module Parameters | 37 | Module Parameters |
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index de62f60bcaf1..af5740d5d70f 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
@@ -9,7 +9,7 @@ | |||
9 | Sis950 A clone of the IT8705F | 9 | Sis950 A clone of the IT8705F |
10 | 10 | ||
11 | Copyright (C) 2001 Chris Gauthron <chrisg@0-in.com> | 11 | Copyright (C) 2001 Chris Gauthron <chrisg@0-in.com> |
12 | Largely inspired by lm78.c of the same package | 12 | Copyright (C) 2005-2006 Jean Delvare <khali@linux-fr.org> |
13 | 13 | ||
14 | This program is free software; you can redistribute it and/or modify | 14 | This program is free software; you can redistribute it and/or modify |
15 | it under the terms of the GNU General Public License as published by | 15 | it under the terms of the GNU General Public License as published by |
@@ -26,13 +26,6 @@ | |||
26 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 26 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
27 | */ | 27 | */ |
28 | 28 | ||
29 | /* | ||
30 | djg@pdp8.net David Gesswein 7/18/01 | ||
31 | Modified to fix bug with not all alarms enabled. | ||
32 | Added ability to read battery voltage and select temperature sensor | ||
33 | type at module load time. | ||
34 | */ | ||
35 | |||
36 | #include <linux/module.h> | 29 | #include <linux/module.h> |
37 | #include <linux/init.h> | 30 | #include <linux/init.h> |
38 | #include <linux/slab.h> | 31 | #include <linux/slab.h> |
@@ -1392,7 +1385,8 @@ static void __exit sm_it87_exit(void) | |||
1392 | } | 1385 | } |
1393 | 1386 | ||
1394 | 1387 | ||
1395 | MODULE_AUTHOR("Chris Gauthron <chrisg@0-in.com>"); | 1388 | MODULE_AUTHOR("Chris Gauthron <chrisg@0-in.com>, " |
1389 | "Jean Delvare <khali@linux-fr.org>"); | ||
1396 | MODULE_DESCRIPTION("IT8705F/8712F/8716F/8718F, SiS950 driver"); | 1390 | MODULE_DESCRIPTION("IT8705F/8712F/8716F/8718F, SiS950 driver"); |
1397 | module_param(update_vbat, bool, 0); | 1391 | module_param(update_vbat, bool, 0); |
1398 | MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value"); | 1392 | MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value"); |