Changeset 5311

Show
Ignore:
Timestamp:
08/20/08 13:25:47 (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/trunk/prog/detect/sensors-detect

    r5309 r5311  
    10911091     }, 
    10921092     { 
    1093        name => "Texas Instruments TMP401", 
     1093       name => "Texas Instruments TMP401/TMP411", 
    10941094       driver => "tmp401", 
    10951095       i2c_addrs => [0x4c], 
     
    39563956#   (0 = LM90, 1=LM89/LM99, 2=LM86, 3=ADM1032, 4=MAX6657/MAX6658/MAX6659, 
    39573957#    5 = ADT7461, 6 = MAX6648/MAX6692, 7 = MAX6680/MAX6681, 
    3958 #    8 = W83L771W/G), 9 = TI TMP401 
     3958#    8 = W83L771W/G), 9 = TI TMP401/TMP411 
    39593959# $_[1]: A reference to the file descriptor to access this chip. 
    39603960# $_[2]: Address 
     
    40424042    return if $rate > 0x0F; 
    40434043    return if $mid != 0x55;     # Texas Instruments 
    4044     return if $cid != 0x11;     # TMP401 
     4044    return if $cid != 0x11;     # TMP401/TMP411 
    40454045    return 6; 
    40464046  }