Skip to content

Commit

Permalink
sh: Clean up PAGE_SIZE definition for assembly use.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Paul Mundt committed Sep 27, 2006
1 parent 28ccf7f commit 8c12b5d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/asm-sh/page.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8c12b5d

Please sign in to comment.