diff options
| author | Paul Saab <ps@FreeBSD.org> | 2006-04-04 02:36:04 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2006-04-04 02:36:04 +0000 |
| commit | cef5d0ae848045d81d8bb45be20bf6ba5da0d005 (patch) | |
| tree | 83324e06b6fe1c1af9bb30d9eb1382a99389ca61 /sys/dev/hwpmc | |
| parent | 64e3ca8f4851d7922863b62c2ad1185a41b1b25e (diff) | |
Notes
Diffstat (limited to 'sys/dev/hwpmc')
| -rw-r--r-- | sys/dev/hwpmc/hwpmc_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hwpmc/hwpmc_x86.c b/sys/dev/hwpmc/hwpmc_x86.c index 96e32f228d1d..9b00b637c063 100644 --- a/sys/dev/hwpmc/hwpmc_x86.c +++ b/sys/dev/hwpmc/hwpmc_x86.c @@ -91,7 +91,7 @@ pmc_intel_initialize(void) #if defined(__i386__) || defined(__amd64__) case 0xF00: /* P4 */ model = ((cpu_id & 0xF0000) >> 12) | ((cpu_id & 0xF0) >> 4); - if (model >= 0 && model <= 4) /* known models */ + if (model >= 0 && model <= 6) /* known models */ cputype = PMC_CPU_INTEL_PIV; break; } |
