Changeset 5312

Show
Ignore:
Timestamp:
08/20/08 13:27:43 (5 years ago)
Author:
khali
Message:

The TI TMP411 has the same device ID as the TMP401.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/prog/detect/sensors-detect

    r5310 r5312  
    11411141     }, 
    11421142     { 
    1143        name => "Texas Instruments TMP401", 
     1143       name => "Texas Instruments TMP401/TMP411", 
    11441144       driver => "tmp401", 
    11451145       i2c_addrs => [0x4c], 
     
    40054005#   (0 = LM90, 1 = LM89/LM99, 2 = LM86, 3 = ADM1032, 4 = MAX6654/MAX6690, 
    40064006#    5 = ADT7461, 6 = MAX6646/MAX6647/MAX6648/MAX6649/MAX6692, 
    4007 #    7 = MAX6680/MAX6681, 8 = W83L771W/G, 9 = TI TMP401) 
     4007#    7 = MAX6680/MAX6681, 8 = W83L771W/G, 9 = TI TMP401/TMP411) 
    40084008# $_[1]: A reference to the file descriptor to access this chip. 
    40094009# $_[2]: Address 
     
    40884088    return if $rate > 0x0F; 
    40894089    return if $mid != 0x55;     # Texas Instruments 
    4090     return if $cid != 0x11;     # TMP401 
     4090    return if $cid != 0x11;     # TMP401/TMP411 
    40914091    return 8; 
    40924092  }