2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Add Intel Celeron 4xx and Intel Core 2 CPUs on 45nm (Penryn) detection.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5048 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Rudolf Marek
2007-11-27 11:13:49 +00:00
parent f1a894e4e1
commit d147525434
2 changed files with 4 additions and 1 deletions

View File

@@ -5448,7 +5448,9 @@ sub coretemp_detect
if ($probecpu->{'vendor_id'} eq 'GenuineIntel' &&
$probecpu->{'cpu family'} == 6 &&
($probecpu->{'model'} == 14 ||
$probecpu->{'model'} == 15)) {
$probecpu->{'model'} == 15 ||
$probecpu->{'model'} == 16 ||
$probecpu->{'model'} == 17)) {
return 9;
}
}