summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include/pmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mips64/include/pmap.h')
-rw-r--r--sys/arch/mips64/include/pmap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mips64/include/pmap.h b/sys/arch/mips64/include/pmap.h
index 4adfe5b30ce..42acde5fd7c 100644
--- a/sys/arch/mips64/include/pmap.h
+++ b/sys/arch/mips64/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.13 2007/09/10 18:49:45 miod Exp $ */
+/* $OpenBSD: pmap.h,v 1.14 2007/10/18 04:32:09 miod Exp $ */
/*
* Copyright (c) 1987 Carnegie-Mellon University
@@ -40,6 +40,8 @@
#ifdef _KERNEL
+#include <machine/pte.h>
+
/*
* The user address space is 2Gb (0x0 - 0x80000000).
* User programs are laid out in memory as follows:
@@ -68,10 +70,8 @@
#define PMAP_SEGTABSIZE 512
-union pt_entry;
-
struct segtab {
- union pt_entry *seg_tab[PMAP_SEGTABSIZE];
+ pt_entry_t *seg_tab[PMAP_SEGTABSIZE];
};
/*