projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28ccf7f
)
sh: Clean up PAGE_SIZE definition for assembly use.
author
Paul Mundt
<lethal@linux-sh.org>
Wed, 27 Sep 2006 09:31:06 +0000
(18:31 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Wed, 27 Sep 2006 09:31:06 +0000
(18:31 +0900)
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>
include/asm-sh/page.h
patch
|
blob
|
blame
|
history
diff --git
a/include/asm-sh/page.h
b/include/asm-sh/page.h
index 888d6fe0030e053a24865d06884e2e067bffa2b8..acf6977b404251ef4e2ad94496a49474ef5c560a 100644
(file)
--- 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