Changeset 5289
- Timestamp:
- 06/24/08 08:31:27 (5 months ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5286 r5289 30 30 Fix Andigilog aSC7621 support 31 31 Fix Analog Devices ADT7461 support 32 Add VIA C7 support 32 33 33 34 2.10.6 "Welcome Home Lina" (20080306) lm-sensors/trunk/prog/detect/sensors-detect
r5283 r5289 2049 2049 detect => sub { intel_amb_detect(); }, 2050 2050 }, 2051 { 2052 name => "VIA C7 thermal and voltage sensors", 2053 driver => "c7temp", 2054 detect => sub { c7temp_detect(); }, 2055 }, 2051 2056 ); 2052 2057 … … 5482 5487 $probecpu->{'model'} == 0x16 || 5483 5488 $probecpu->{'model'} == 0x17)) { 5489 return 9; 5490 } 5491 } 5492 return; 5493 } 5494 5495 # Returns: undef if not detected, (9) if detected. 5496 sub c7temp_detect 5497 { 5498 my $probecpu; 5499 foreach $probecpu (@cpu) { 5500 if ($probecpu->{'vendor_id'} eq 'CentaurHauls' && 5501 $probecpu->{'cpu family'} == 6 && 5502 ($probecpu->{'model'} == 0xa || 5503 $probecpu->{'model'} == 0xd)) { 5484 5504 return 9; 5485 5505 }
