diff options
Diffstat (limited to 'vm/vm_kmem.h')
-rw-r--r-- | vm/vm_kmem.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/vm_kmem.h b/vm/vm_kmem.h index 30c7cd32..3628a690 100644 --- a/vm/vm_kmem.h +++ b/vm/vm_kmem.h @@ -20,16 +20,16 @@ #include <stdint.h> -#include <kern/param.h> +#include <machine/pmap.h> #include <machine/types.h> /* * The kernel space is required not to start at address 0, which is used to * report allocation errors. */ -#if VM_MIN_KMEM_ADDRESS == 0 +#if PMAP_MIN_KMEM_ADDRESS == 0 #error "kernel space must not start at address 0" -#endif /* VM_MIN_KMEM_ADDRESS == 0 */ +#endif /* PMAP_MIN_KMEM_ADDRESS == 0 */ /* * Special kernel addresses. |