From: Paul Mundt Date: Wed, 27 Sep 2006 09:31:06 +0000 (+0900) Subject: sh: Clean up PAGE_SIZE definition for assembly use. X-Git-Tag: v2.6.19-rc1~902^2~4 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8c12b5dc13bf8516303a8224ab4e9708b33d5b00;p=linux-2.6-omap-h63xx.git 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 --- 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