Changeset 4166

Show
Ignore:
Timestamp:
09/20/06 22:01:18 (7 years ago)
Author:
khali
Message:

Explicitely prevent ITE chips from being misdetected as LM78 chips.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/prog/detect/sensors-detect

    r4152 r4166  
    30683068  return if $reg == 0xa3 || $reg == 0x5c; 
    30693069 
     3070  # Explicitely prevent misdetection of ITE chips 
     3071  $reg = &$readproc(0x58); 
     3072  return if $reg == 0x90; 
     3073 
    30703074  return 6; 
    30713075}