diff options
Diffstat (limited to 'include/asm-i386/page.h')
-rw-r--r-- | include/asm-i386/page.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-i386/page.h b/include/asm-i386/page.h index 1694ed16b..0490404b7 100644 --- a/include/asm-i386/page.h +++ b/include/asm-i386/page.h @@ -79,7 +79,10 @@ typedef unsigned long pgprot_t; * * which has the same constant encoded.. */ -#define __PAGE_OFFSET (0xC0000000) + +#include <asm/page_offset.h> + +#define __PAGE_OFFSET (PAGE_OFFSET_RAW) #define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET) #define __pa(x) ((unsigned long)(x)-PAGE_OFFSET) |