aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64
diff options
context:
space:
mode:
authorMatthew N. Dodd <mdodd@FreeBSD.org>2002-09-19 18:53:49 +0000
committerMatthew N. Dodd <mdodd@FreeBSD.org>2002-09-19 18:53:49 +0000
commit12f20b19da230541ad7d5b54d21b5b116663abec (patch)
tree75ca2eafd893cec740607aca3cb8d16e3441c8a2 /sys/amd64
parent0be15dec9a46be382a0e0b54a335d3ac97cc51e2 (diff)
Notes
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/amd64_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/amd64_mem.c b/sys/amd64/amd64/amd64_mem.c
index 672e63fbe00a7..fcff3cee6bd70 100644
--- a/sys/amd64/amd64/amd64_mem.c
+++ b/sys/amd64/amd64/amd64_mem.c
@@ -602,7 +602,7 @@ i686_mem_drvinit(void *unused)
{
/* Try for i686 MTRRs */
if ((cpu_feature & CPUID_MTRR) &&
- ((cpu_id & 0xf00) == 0x600) &&
+ ((cpu_id & 0xf00) == 0x600 || (cpu_id & 0xf00) == 0xf00) &&
((strcmp(cpu_vendor, "GenuineIntel") == 0) ||
(strcmp(cpu_vendor, "AuthenticAMD") == 0))) {
mem_range_softc.mr_op = &i686_mrops;