Changeset 4558

Show
Ignore:
Timestamp:
07/05/07 22:51:51 (5 years ago)
Author:
khali
Message:

thmc50: Fix the i2c address range.
Add link to the datasheets.

Location:
lm-sensors/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r4557 r4558  
    1616  Module i2c-nforce2: Add nForce MCP61, MCP65 support (2.6 backport) 
    1717  Module lm85: Fix setting the fan speed min limit to 0 
     18  Module thmc50: Fix the i2c address range 
    1819  Module w83627ehf: New (2.6 backport) 
    1920  Programs i2cdump, i2cget, i2cset: Do not force the slave address by default 
  • lm-sensors/trunk/doc/chips/thmc50

    r3007 r4558  
    77  * Analog Devices ADM1022 
    88    Prefix: 'adm1022' 
    9     Addresses scanned: I2C 0x2D - 0x2F 
    10     Datasheet: Publicly available at the Analog Devices website 
     9    Addresses scanned: I2C 0x2C - 0x2E 
     10    Datasheet: http://www.analog.com/en/prod/0,2877,ADM1022,00.html 
    1111  * Texas Instruments THMC50 
    1212    Prefix: 'thmc50' 
    13     Addresses scanned: I2C 0x2D - 0x2F 
    14     Datasheet: Publicly available at the Texas Instruments' website 
     13    Addresses scanned: I2C 0x2C - 0x2E 
     14    Datasheet: http://focus.ti.com/docs/prod/folders/print/thmc50.html 
    1515 
    1616Authors: Frodo Looijaard <frodol@dds.nl> and  
  • lm-sensors/trunk/kernel/chips/thmc50.c

    r3000 r4558  
    3333/* Addresses to scan */ 
    3434static unsigned short normal_i2c[] = { SENSORS_I2C_END }; 
    35 static unsigned short normal_i2c_range[] = { 0x2D, 0x2E, SENSORS_I2C_END }; 
     35static unsigned short normal_i2c_range[] = { 0x2C, 0x2E, SENSORS_I2C_END }; 
    3636static unsigned int normal_isa[] = { SENSORS_ISA_END }; 
    3737static unsigned int normal_isa_range[] = { SENSORS_ISA_END };