aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2011-03-26 05:45:02 -0400
committerJean Delvare <khali@endymion.delvare>2011-03-26 05:45:02 -0400
commit5d7f77bf66bfa986754b3e12073bef0ab8cd61bd (patch)
treeaca11e891d8af9e53967dedcdca47ad0b0eb5566
parentf27def07bfb296d5eb441cd5777d351c7afcb4a1 (diff)
hwmon: (f71882fg) Document all supported devices
The list of supported devices was not always well documented in all places. Clarify and list all devices in documentation, Kconfig and the driver itself. Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Guenter Roeck <guenter.roeck@ericsson.com>
-rw-r--r--Documentation/hwmon/f71882fg11
-rw-r--r--drivers/hwmon/Kconfig16
-rw-r--r--drivers/hwmon/f71882fg.c2
3 files changed, 25 insertions, 4 deletions
diff --git a/Documentation/hwmon/f71882fg b/Documentation/hwmon/f71882fg
index 4d0bc70f1852..ed2a7aa41de8 100644
--- a/Documentation/hwmon/f71882fg
+++ b/Documentation/hwmon/f71882fg
@@ -2,6 +2,10 @@ Kernel driver f71882fg
2====================== 2======================
3 3
4Supported chips: 4Supported chips:
5 * Fintek F71808E
6 Prefix: 'f71808e'
7 Addresses scanned: none, address read from Super I/O config space
8 Datasheet: Not public
5 * Fintek F71858FG 9 * Fintek F71858FG
6 Prefix: 'f71858fg' 10 Prefix: 'f71858fg'
7 Addresses scanned: none, address read from Super I/O config space 11 Addresses scanned: none, address read from Super I/O config space
@@ -30,6 +34,13 @@ Supported chips:
30 Prefix: 'f8000' 34 Prefix: 'f8000'
31 Addresses scanned: none, address read from Super I/O config space 35 Addresses scanned: none, address read from Super I/O config space
32 Datasheet: Not public 36 Datasheet: Not public
37 * Fintek F81801U
38 Prefix: 'f71889fg'
39 Addresses scanned: none, address read from Super I/O config space
40 Datasheet: Not public
41 Note: This is the 64-pin variant of the F71889FG, they have the
42 same device ID and are fully compatible as far as hardware
43 monitoring is concerned.
33 44
34Author: Hans de Goede <hdegoede@redhat.com> 45Author: Hans de Goede <hdegoede@redhat.com>
35 46
diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
index 81131eda5544..51255b366d09 100644
--- a/drivers/hwmon/Kconfig
+++ b/drivers/hwmon/Kconfig
@@ -315,11 +315,21 @@ config SENSORS_F71805F
315 will be called f71805f. 315 will be called f71805f.
316 316
317config SENSORS_F71882FG 317config SENSORS_F71882FG
318 tristate "Fintek F71858FG, F71862FG, F71882FG, F71889FG and F8000" 318 tristate "Fintek F71882FG and compatibles"
319 help 319 help
320 If you say yes here you get support for hardware monitoring 320 If you say yes here you get support for hardware monitoring
321 features of the Fintek F71858FG, F71862FG/71863FG, F71882FG/F71883FG, 321 features of many Fintek Super-I/O (LPC) chips. The currently
322 F71889FG and F8000 Super-I/O chips. 322 supported chips are:
323 F71808E
324 F71858FG
325 F71862FG
326 F71863FG
327 F71869F/E
328 F71882FG
329 F71883FG
330 F71889FG/ED
331 F8000
332 F81801U
323 333
324 This driver can also be built as a module. If so, the module 334 This driver can also be built as a module. If so, the module
325 will be called f71882fg. 335 will be called f71882fg.
diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c
index 222c7f4a1e3f..29879046fe53 100644
--- a/drivers/hwmon/f71882fg.c
+++ b/drivers/hwmon/f71882fg.c
@@ -114,7 +114,7 @@ static const char *f71882fg_names[] = {
114 "f71862fg", 114 "f71862fg",
115 "f71869", /* Both f71869f and f71869e, reg. compatible and same id */ 115 "f71869", /* Both f71869f and f71869e, reg. compatible and same id */
116 "f71882fg", 116 "f71882fg",
117 "f71889fg", 117 "f71889fg", /* f81801u too, same id */
118 "f71889ed", 118 "f71889ed",
119 "f8000", 119 "f8000",
120}; 120};