Changeset 4152

Show
Ignore:
Timestamp:
09/07/06 10:55:56 (7 years ago)
Author:
khali
Message:

Drop unused detection code.

Files:
1 modified

Legend:

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

    r4150 r4152  
    39593959} 
    39603960 
    3961 # $_[0]: Chip to detect (0 = W83781D, 1 = W83782D, 3 = W83627HF, 
    3962 #                        9 = W83627EHF 10 = W83627DHG) 
     3961# $_[0]: Chip to detect (0 = W83781D, 1 = W83782D, 3 = W83627HF) 
    39633962# $_[1]: Address 
    39643963# Returns: undef if not detected, (8) if detected. 
     
    39883987  return if $chip == 1 and  ($reg1 & 0xfe) != 0x30; 
    39893988  return if $chip == 3 and  ($reg1 & 0xfe) != 0x20; 
    3990   return if $chip == 9 and  !($reg1 == 0x88 or $reg1 == 0xa1); 
    3991   return if $chip == 10 and  $reg1 != 0xa2; 
    39923989 
    39933990  return 8;