diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-sh/page.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-sh/page.h b/include/asm-sh/page.h index 888d6fe0030e..acf6977b4042 100644 --- a/include/asm-sh/page.h +++ b/include/asm-sh/page.h | |||
@@ -16,7 +16,13 @@ | |||
16 | 16 | ||
17 | /* PAGE_SHIFT determines the page size */ | 17 | /* PAGE_SHIFT determines the page size */ |
18 | #define PAGE_SHIFT 12 | 18 | #define PAGE_SHIFT 12 |
19 | |||
20 | #ifdef __ASSEMBLY__ | ||
19 | #define PAGE_SIZE (1 << PAGE_SHIFT) | 21 | #define PAGE_SIZE (1 << PAGE_SHIFT) |
22 | #else | ||
23 | #define PAGE_SIZE (1UL << PAGE_SHIFT) | ||
24 | #endif | ||
25 | |||
20 | #define PAGE_MASK (~(PAGE_SIZE-1)) | 26 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
21 | #define PTE_MASK PAGE_MASK | 27 | #define PTE_MASK PAGE_MASK |
22 | 28 | ||