|
From: Paul M. <le...@us...> - 2006-07-19 14:33:28
|
Update of /cvsroot/linuxsh/linux/include/asm-sh In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12846/include/asm-sh Modified Files: page.h Log Message: Make PAGE_OFFSET configurable via CONFIG_PAGE_OFFSET, needed for nommu. Index: page.h =================================================================== RCS file: /cvsroot/linuxsh/linux/include/asm-sh/page.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- page.h 5 Jul 2006 12:33:09 -0000 1.15 +++ page.h 19 Jul 2006 14:33:16 -0000 1.16 @@ -85,7 +85,7 @@ #define __MEMORY_START CONFIG_MEMORY_START #define __MEMORY_SIZE CONFIG_MEMORY_SIZE -#define PAGE_OFFSET (0x80000000UL) +#define PAGE_OFFSET CONFIG_PAGE_OFFSET #define __pa(x) ((unsigned long)(x)-PAGE_OFFSET) #define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET)) |