diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 18:31:06 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 18:31:06 +0900 |
commit | 8c12b5dc13bf8516303a8224ab4e9708b33d5b00 (patch) | |
tree | dc87b59da89d73963041267328ab88b7424d551b /include/asm-sh | |
parent | 28ccf7f91b1ac42ee1f18480a69d2a7486b625ce (diff) | |
download | linux-3.10-8c12b5dc13bf8516303a8224ab4e9708b33d5b00.tar.gz linux-3.10-8c12b5dc13bf8516303a8224ab4e9708b33d5b00.tar.bz2 linux-3.10-8c12b5dc13bf8516303a8224ab4e9708b33d5b00.zip |
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 888d6fe0030..acf6977b404 100644 --- a/include/asm-sh/page.h +++ b/include/asm-sh/page.h @@ -16,7 +16,13 @@ /* PAGE_SHIFT determines the page size */ #define PAGE_SHIFT 12 + +#ifdef __ASSEMBLY__ #define PAGE_SIZE (1 << PAGE_SHIFT) +#else +#define PAGE_SIZE (1UL << PAGE_SHIFT) +#endif + #define PAGE_MASK (~(PAGE_SIZE-1)) #define PTE_MASK PAGE_MASK |