From e11d38cb52d904b76fe2c5fd0c86a4b22d4db06b Mon Sep 17 00:00:00 2001 From: "Mark D. Studebaker" Date: Sun, 9 Dec 2001 18:54:34 +0000 Subject: [PATCH] fix broken via686a sensors detection git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@1263 7894878c-1315-0410-8ee3-d5d059ff63e0 --- CHANGES | 3 ++- prog/detect/sensors-detect | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index acbe58b7..7096c8be 100644 --- a/CHANGES +++ b/CHANGES @@ -24,7 +24,8 @@ ask CVS about it: Module w83781d: Add W83697HF support Program i2cdump: Add i2c block read capability Program sensors: Add PCF8591 and W83697HF support - Program sensors-detect: Add several Nvidia chips, add PCF8591 + Program sensors-detect: Add several Nvidia chips, add PCF8591, + fix Via 686a detection 2.6.2 (20011118) diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect index bc5f5248..3f947bc7 100755 --- a/prog/detect/sensors-detect +++ b/prog/detect/sensors-detect @@ -778,7 +778,7 @@ use subs qw(mtp008_detect lm78_detect lm78_isa_detect lm78_alias_detect isa_detect => sub { sis5595_isa_detect @_ }, }, { - name => "VIA Technologies VT 82C686 Integrated Sensors", + name => "VIA Technologies VT82C686 Integrated Sensors", driver => "via686a", isa_addrs => [ 0 ], isa_detect => sub { via686a_isa_detect @_ }, @@ -2149,7 +2149,7 @@ sub via686a_isa_detect my ($adapter,$try,$local_try); my $found = 0; foreach $local_try (@pci_adapters) { - if ($local_try->{procid} eq "VIA Technologies VT 82C686 Apollo ACPI") { + if ($local_try->{procid} eq "VIA Technologies VT82C686 Apollo ACPI") { $try = $local_try; $found = 1; last;