Changeset 5809
- Timestamp:
- 12/14/09 10:52:42 (4 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5806 r5809 41 41 More known revisions for the ADT7476 42 42 Add detection for Nuvoton W83L771AWG/ASG 43 Add detection for VIA Nano 43 44 sysconfig-lm_sensors-convert: Fix exit code 44 45 -
lm-sensors/trunk/prog/detect/sensors-detect
r5807 r5809 1900 1900 detect => \&intel_amb_detect, 1901 1901 }, { 1902 name => "VIA C7 thermal and voltage sensors", 1903 driver => "c7temp", 1904 detect => \&c7temp_detect, 1902 name => "VIA C7 thermal sensor", 1903 driver => "via-cputemp", 1904 detect => \&via_c7_detect, 1905 }, { 1906 name => "VIA Nano thermal sensor", 1907 driver => "via-cputemp", 1908 detect => \&via_nano_detect, 1905 1909 } 1906 1910 ); … … 5403 5407 } 5404 5408 5405 sub c7temp_detect5409 sub via_c7_detect 5406 5410 { 5407 5411 my $probecpu; … … 5411 5415 ($probecpu->{model} == 0xa || 5412 5416 $probecpu->{model} == 0xd)) { 5417 return 9; 5418 } 5419 } 5420 return; 5421 } 5422 5423 sub via_nano_detect 5424 { 5425 my $probecpu; 5426 foreach $probecpu (@cpu) { 5427 if ($probecpu->{vendor_id} eq 'CentaurHauls' && 5428 $probecpu->{'cpu family'} == 6 && 5429 $probecpu->{model} == 0xf) { 5413 5430 return 9; 5414 5431 }
