2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 14:25:39 +00:00

Drop unused detection code.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@4152 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2006-09-07 08:55:56 +00:00
parent e5d21141d6
commit c0c8286b34

View File

@@ -3958,8 +3958,7 @@ sub w83781d_alias_detect
return 1;
}
# $_[0]: Chip to detect (0 = W83781D, 1 = W83782D, 3 = W83627HF,
# 9 = W83627EHF 10 = W83627DHG)
# $_[0]: Chip to detect (0 = W83781D, 1 = W83782D, 3 = W83627HF)
# $_[1]: Address
# Returns: undef if not detected, (8) if detected.
sub w83781d_isa_detect
@@ -3987,8 +3986,6 @@ sub w83781d_isa_detect
return if $chip == 0 and ($reg1 & 0xfe) != 0x10;
return if $chip == 1 and ($reg1 & 0xfe) != 0x30;
return if $chip == 3 and ($reg1 & 0xfe) != 0x20;
return if $chip == 9 and !($reg1 == 0x88 or $reg1 == 0xa1);
return if $chip == 10 and $reg1 != 0xa2;
return 8;
}