Changeset 5369

Show
Ignore:
Timestamp:
10/22/08 16:46:57 (3 years ago)
Author:
khali
Message:

Update lm90 datasheet links. Backport from Linux 2.6.

Location:
lm-sensors/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5368 r5369  
    33 
    44SVN-HEAD 
     5  File doc/chips/lm90: Update datasheet links (2.6 backport) 
    56  File i2c-dev.h: Drop I2C_FUNC_SMBUS_*I2C_BLOCK_2 defines 
    67  Library: Avoid namespace pollution 
  • lm-sensors/trunk/doc/chips/lm90

    r4608 r5369  
    1414    Addresses scanned: I2C 0x4c and 0x4d 
    1515    Datasheet: Publicly available at the National Semiconductor website 
    16                http://www.national.com/pf/LM/LM89.html 
     16               http://www.national.com/mpf/LM/LM89.html 
    1717  * National Semiconductor LM99 
    1818    Prefix: 'lm99' 
     
    2424    Addresses scanned: I2C 0x4c 
    2525    Datasheet: Publicly available at the National Semiconductor website 
    26                http://www.national.com/pf/LM/LM86.html 
     26               http://www.national.com/mpf/LM/LM86.html 
    2727  * Analog Devices ADM1032 
    2828    Prefix: 'adm1032' 
    2929    Addresses scanned: I2C 0x4c and 0x4d 
    30     Datasheet: Publicly available at the Analog Devices website 
    31                http://www.analog.com/en/prod/0,2877,ADM1032,00.html 
     30    Datasheet: Publicly available at the ON Semiconductor website 
     31               http://www.onsemi.com/PowerSolutions/product.do?id=ADM1032 
    3232  * Analog Devices ADT7461 
    3333    Prefix: 'adt7461' 
    3434    Addresses scanned: I2C 0x4c and 0x4d 
    35     Datasheet: Publicly available at the Analog Devices website 
    36                http://www.analog.com/en/prod/0,2877,ADT7461,00.html 
     35    Datasheet: Publicly available at the ON Semiconductor website 
     36               http://www.onsemi.com/PowerSolutions/product.do?id=ADT7461 
    3737    Note: Only if in ADM1032 compatibility mode 
    3838  * Maxim MAX6657 
  • lm-sensors/trunk/kernel/chips/lm90.c

    r5284 r5369  
    77 * Semiconductor. It reports up to two temperatures (its own plus up to 
    88 * 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 
    10  * obtained from National's website at: 
    11  *   http://www.national.com/pf/LM/LM90.html 
     9 * temperature) and a 3-4 deg accuracy. 
    1210 * 
    1311 * This driver also supports the LM89 and LM99, two other sensor chips 
     
    1715 * degrees, which allows for higher temperatures measurement. The 
    1816 * 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 
    2217 * Note that there is no way to differentiate between both chips. 
    2318 * 
     
    2520 * National Semiconductor. It is exactly similar to the LM90 except it 
    2621 * has a higher accuracy. 
    27  * Complete datasheet can be obtained from National's website at: 
    28  *   http://www.national.com/pf/LM/LM86.html 
    2922 * 
    3023 * This driver also supports the ADM1032, a sensor chip made by Analog 
    3124 * Devices. That chip is similar to the LM90, with a few differences 
    32  * that are not handled by this driver. Complete datasheet can be 
    33  * obtained from Analog's website at: 
    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. 
     25 * that are not handled by this driver. Among others, it has a higher 
     26 * accuracy than the LM90, much like the LM86 does. 
    3727 * 
    3828 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor 
    39  * chips made by Maxim. These chips are similar to the LM86. Complete 
    40  * datasheet can be obtained at Maxim's website at: 
    41  *   http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2578 
     29 * chips made by Maxim. These chips are similar to the LM86. 
    4230 * Note that there is no easy way to differentiate between the three 
    4331 * variants. The extra address and features of the MAX6659 are not 
     
    4836 * is configured in non-compatible mode (where its temperature 
    4937 * register values are decoded differently) it is ignored by this 
    50  * driver. Complete datasheet can be obtained from Analog's website 
    51  * at: 
    52  *   http://www.analog.com/en/prod/0,2877,ADT7461,00.html 
     38 * driver. 
    5339 * 
    5440 * Since the LM90 was the first chipset supported by this driver, most