diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 05:31:06 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 05:31:06 -0400 |
commit | 8c12b5dc13bf8516303a8224ab4e9708b33d5b00 (patch) | |
tree | dc87b59da89d73963041267328ab88b7424d551b /include/asm-sh | |
parent | 28ccf7f91b1ac42ee1f18480a69d2a7486b625ce (diff) |
sh: Clean up PAGE_SIZE definition for assembly use.
We want to be able to use PAGE_SIZE all over the place,
this is the same approach adopted by other architectures..
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh')
-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 | ||