aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2008-10-17 11:51:10 -0400
committerJean Delvare <khali@mahadeva.delvare>2008-10-17 11:51:10 -0400
commita874a10cf0b7105ae5eeb98b4860eae0fc78fcdd (patch)
treedadd3af297c30537a7d69102d04e0e4aedfb2658
parent5f502a834a6471dc3cc456ccef66292e9e3a152e (diff)
hwmon: (lm90) Update datasheet links
Update the links to the datasheet of some of the devices supported by the lm90 driver. Also remove the links from the driver itself, so that we don't have to update them twice each time they change. Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Martyn Welch <martyn.welch@gefanuc.com>
-rw-r--r--Documentation/hwmon/lm9012
-rw-r--r--drivers/hwmon/lm90.c30
2 files changed, 13 insertions, 29 deletions
diff --git a/Documentation/hwmon/lm90 b/Documentation/hwmon/lm90
index 0b3e8bb7c1f0..0c08c5c5637b 100644
--- a/Documentation/hwmon/lm90
+++ b/Documentation/hwmon/lm90
@@ -11,7 +11,7 @@ Supported chips:
11 Prefix: 'lm99' 11 Prefix: 'lm99'
12 Addresses scanned: I2C 0x4c and 0x4d 12 Addresses scanned: I2C 0x4c and 0x4d
13 Datasheet: Publicly available at the National Semiconductor website 13 Datasheet: Publicly available at the National Semiconductor website
14 http://www.national.com/pf/LM/LM89.html 14 http://www.national.com/mpf/LM/LM89.html
15 * National Semiconductor LM99 15 * National Semiconductor LM99
16 Prefix: 'lm99' 16 Prefix: 'lm99'
17 Addresses scanned: I2C 0x4c and 0x4d 17 Addresses scanned: I2C 0x4c and 0x4d
@@ -21,17 +21,17 @@ Supported chips:
21 Prefix: 'lm86' 21 Prefix: 'lm86'
22 Addresses scanned: I2C 0x4c 22 Addresses scanned: I2C 0x4c
23 Datasheet: Publicly available at the National Semiconductor website 23 Datasheet: Publicly available at the National Semiconductor website
24 http://www.national.com/pf/LM/LM86.html 24 http://www.national.com/mpf/LM/LM86.html
25 * Analog Devices ADM1032 25 * Analog Devices ADM1032
26 Prefix: 'adm1032' 26 Prefix: 'adm1032'
27 Addresses scanned: I2C 0x4c and 0x4d 27 Addresses scanned: I2C 0x4c and 0x4d
28 Datasheet: Publicly available at the Analog Devices website 28 Datasheet: Publicly available at the ON Semiconductor website
29 http://www.analog.com/en/prod/0,2877,ADM1032,00.html 29 http://www.onsemi.com/PowerSolutions/product.do?id=ADM1032
30 * Analog Devices ADT7461 30 * Analog Devices ADT7461
31 Prefix: 'adt7461' 31 Prefix: 'adt7461'
32 Addresses scanned: I2C 0x4c and 0x4d 32 Addresses scanned: I2C 0x4c and 0x4d
33 Datasheet: Publicly available at the Analog Devices website 33 Datasheet: Publicly available at the ON Semiconductor website
34 http://www.analog.com/en/prod/0,2877,ADT7461,00.html 34 http://www.onsemi.com/PowerSolutions/product.do?id=ADT7461
35 Note: Only if in ADM1032 compatibility mode 35 Note: Only if in ADM1032 compatibility mode
36 * Maxim MAX6657 36 * Maxim MAX6657
37 Prefix: 'max6657' 37 Prefix: 'max6657'
diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c
index 90489b8f5c8b..d96e403d59e0 100644
--- a/drivers/hwmon/lm90.c
+++ b/drivers/hwmon/lm90.c
@@ -6,9 +6,7 @@
6 * Based on the lm83 driver. The LM90 is a sensor chip made by National 6 * Based on the lm83 driver. The LM90 is a sensor chip made by National
7 * Semiconductor. It reports up to two temperatures (its own plus up to 7 * Semiconductor. It reports up to two temperatures (its own plus up to
8 * one external one) with a 0.125 deg resolution (1 deg for local 8 * one external one) with a 0.125 deg resolution (1 deg for local
9 * temperature) and a 3-4 deg accuracy. Complete datasheet can be 9 * temperature) and a 3-4 deg accuracy.
10 * obtained from National's website at:
11 * http://www.national.com/pf/LM/LM90.html
12 * 10 *
13 * This driver also supports the LM89 and LM99, two other sensor chips 11 * This driver also supports the LM89 and LM99, two other sensor chips
14 * made by National Semiconductor. Both have an increased remote 12 * made by National Semiconductor. Both have an increased remote
@@ -16,29 +14,19 @@
16 * additionally shifts remote temperatures (measured and limits) by 16 14 * additionally shifts remote temperatures (measured and limits) by 16
17 * degrees, which allows for higher temperatures measurement. The 15 * degrees, which allows for higher temperatures measurement. The
18 * driver doesn't handle it since it can be done easily in user-space. 16 * driver doesn't handle it since it can be done easily in user-space.
19 * Complete datasheets can be obtained from National's website at:
20 * http://www.national.com/pf/LM/LM89.html
21 * http://www.national.com/pf/LM/LM99.html
22 * Note that there is no way to differentiate between both chips. 17 * Note that there is no way to differentiate between both chips.
23 * 18 *
24 * This driver also supports the LM86, another sensor chip made by 19 * This driver also supports the LM86, another sensor chip made by
25 * National Semiconductor. It is exactly similar to the LM90 except it 20 * National Semiconductor. It is exactly similar to the LM90 except it
26 * has a higher accuracy. 21 * has a higher accuracy.
27 * Complete datasheet can be obtained from National's website at:
28 * http://www.national.com/pf/LM/LM86.html
29 * 22 *
30 * This driver also supports the ADM1032, a sensor chip made by Analog 23 * This driver also supports the ADM1032, a sensor chip made by Analog
31 * Devices. That chip is similar to the LM90, with a few differences 24 * Devices. That chip is similar to the LM90, with a few differences
32 * that are not handled by this driver. Complete datasheet can be 25 * that are not handled by this driver. Among others, it has a higher
33 * obtained from Analog's website at: 26 * accuracy than the LM90, much like the LM86 does.
34 * http://www.analog.com/en/prod/0,2877,ADM1032,00.html
35 * Among others, it has a higher accuracy than the LM90, much like the
36 * LM86 does.
37 * 27 *
38 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor 28 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
39 * chips made by Maxim. These chips are similar to the LM86. Complete 29 * chips made by Maxim. These chips are similar to the LM86.
40 * datasheet can be obtained at Maxim's website at:
41 * http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2578
42 * Note that there is no easy way to differentiate between the three 30 * Note that there is no easy way to differentiate between the three
43 * variants. The extra address and features of the MAX6659 are not 31 * variants. The extra address and features of the MAX6659 are not
44 * supported by this driver. These chips lack the remote temperature 32 * supported by this driver. These chips lack the remote temperature
@@ -46,18 +34,14 @@
46 * 34 *
47 * This driver also supports the MAX6680 and MAX6681, two other sensor 35 * This driver also supports the MAX6680 and MAX6681, two other sensor
48 * chips made by Maxim. These are quite similar to the other Maxim 36 * chips made by Maxim. These are quite similar to the other Maxim
49 * chips. Complete datasheet can be obtained at: 37 * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
50 * http://www.maxim-ic.com/quick_view2.cfm/qv_pk/3370 38 * be treated identically.
51 * The MAX6680 and MAX6681 only differ in the pinout so they can be
52 * treated identically.
53 * 39 *
54 * This driver also supports the ADT7461 chip from Analog Devices but 40 * This driver also supports the ADT7461 chip from Analog Devices but
55 * only in its "compatability mode". If an ADT7461 chip is found but 41 * only in its "compatability mode". If an ADT7461 chip is found but
56 * is configured in non-compatible mode (where its temperature 42 * is configured in non-compatible mode (where its temperature
57 * register values are decoded differently) it is ignored by this 43 * register values are decoded differently) it is ignored by this
58 * driver. Complete datasheet can be obtained from Analog's website 44 * driver.
59 * at:
60 * http://www.analog.com/en/prod/0,2877,ADT7461,00.html
61 * 45 *
62 * Since the LM90 was the first chipset supported by this driver, most 46 * Since the LM90 was the first chipset supported by this driver, most
63 * comments will refer to this chipset, but are actually general and 47 * comments will refer to this chipset, but are actually general and