diff options
author | markm <markm@FreeBSD.org> | 2004-08-06 07:20:32 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2004-08-06 07:20:32 +0000 |
commit | cce2e351df96f16d39c9aefe234a0f6e9ef65681 (patch) | |
tree | ba97d910d1aabf41e2e8c9f058af6ceec81d1517 | |
parent | 5f163990ee25117baedad4018e186126c3df9351 (diff) | |
download | FreeBSD-src-cce2e351df96f16d39c9aefe234a0f6e9ef65681.zip FreeBSD-src-cce2e351df96f16d39c9aefe234a0f6e9ef65681.tar.gz |
MFi386: sort out the mem device. Grrrr.
-rw-r--r-- | sys/amd64/amd64/machdep.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index 414a3fa..f8054e3 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -65,6 +65,7 @@ __FBSDID("$FreeBSD$"); #include <sys/linker.h> #include <sys/lock.h> #include <sys/malloc.h> +#include <sys/memrange.h> #include <sys/mutex.h> #include <sys/pcpu.h> #include <sys/proc.h> @@ -164,6 +165,8 @@ struct pcpu __pcpu[MAXCPU]; struct mtx icu_lock; +struct mem_range_softc mem_range_softc; + static void cpu_startup(dummy) void *dummy; |