2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-03 15:55: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

@@ -14,6 +14,7 @@ SVN
Mention the f75375s driver Mention the f75375s driver
Add SMSC LPC47B367-NC detection (no sensors) Add SMSC LPC47B367-NC detection (no sensors)
Reduce w83781d/lm78 I2C address probing range Reduce w83781d/lm78 I2C address probing range
Add Intel Celeron 4xx and Penryn (CPU on 45nm) detection
3.0.0-rc3 (2007-10-28) 3.0.0-rc3 (2007-10-28)
libsensors: Add a default configuration file libsensors: Add a default configuration file

View File

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