diff options
author | Tim Abbott <tabbott@ksplice.com> | 2009-09-20 17:32:57 (GMT) |
---|---|---|
committer | Chen Liqin <liqin.chen@sunplusct.com> | 2009-09-23 05:35:51 (GMT) |
commit | aa296ddf32da207b430f61b77a8e81c0663f07cf (patch) | |
tree | a401b3e28cfd6c62f8eb38d10a0b0c7f9634869c /arch | |
parent | 7fa07729e439a6184bd824746d06a49cca553f15 (diff) | |
download | linux-fsl-qoriq-aa296ddf32da207b430f61b77a8e81c0663f07cf.tar.xz |
score: Make PAGE_SIZE available to assembly.
Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/score/include/asm/page.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/score/include/asm/page.h b/arch/score/include/asm/page.h index ee58210..d92a5a2 100644 --- a/arch/score/include/asm/page.h +++ b/arch/score/include/asm/page.h @@ -2,10 +2,11 @@ #define _ASM_SCORE_PAGE_H #include <linux/pfn.h> +#include <linux/const.h> /* PAGE_SHIFT determines the page size */ #define PAGE_SHIFT (12) -#define PAGE_SIZE (1UL << PAGE_SHIFT) +#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) #define PAGE_MASK (~(PAGE_SIZE-1)) #ifdef __KERNEL__ |