summaryrefslogtreecommitdiff
path: root/include/asm-x86/page.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-01-30 13:32:43 +0100
committerIngo Molnar <mingo@elte.hu>2008-01-30 13:32:43 +0100
commitd6e3cf63e927310f65e21132f1d1c50e3aa4c2b0 (patch)
treeb95f060f4ae8bea3b6d7fbf876bf14fb59ef1c73 /include/asm-x86/page.h
parentba2b6c525eec459e1c6397f0f3eaeeafad153eab (diff)
x86: page.h: move and unify types for pagetable entry, #4
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/page.h')
-rw-r--r--include/asm-x86/page.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-x86/page.h b/include/asm-x86/page.h
index a522fbada97e..530439e0d340 100644
--- a/include/asm-x86/page.h
+++ b/include/asm-x86/page.h
@@ -92,6 +92,9 @@ typedef unsigned long phys_addr_t;
typedef struct { pteval_t pte; } pte_t;
+#define native_pte_val(x) ((x).pte)
+#define native_make_pte(x) ((pte_t) { (x) } )
+
#endif /* !__ASSEMBLY__ */
#endif /* CONFIG_X86_64 */