aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc64
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2006-02-23 04:55:55 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2006-03-20 04:13:58 -0500
commitb2bef4424cb4522f53e34d98d3deb0916478338b (patch)
tree6c019c3b9e2e99706971694ae85952ef4034bfce /arch/sparc64
parent0f05da6d577b80eb00f15994c86e4812ae60f1b9 (diff)
[SPARC64]: Export _PAGE_E and _PAGE_CACHE to modules.
SBUS flash driver needs it. Noticed by Fabbione. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64')
-rw-r--r--arch/sparc64/mm/init.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c
index 2a123135b042..16f0db38d932 100644
--- a/arch/sparc64/mm/init.c
+++ b/arch/sparc64/mm/init.c
@@ -1423,8 +1423,12 @@ pgprot_t PAGE_EXEC __read_mostly;
1423unsigned long pg_iobits __read_mostly; 1423unsigned long pg_iobits __read_mostly;
1424 1424
1425unsigned long _PAGE_IE __read_mostly; 1425unsigned long _PAGE_IE __read_mostly;
1426
1426unsigned long _PAGE_E __read_mostly; 1427unsigned long _PAGE_E __read_mostly;
1428EXPORT_SYMBOL(_PAGE_E);
1429
1427unsigned long _PAGE_CACHE __read_mostly; 1430unsigned long _PAGE_CACHE __read_mostly;
1431EXPORT_SYMBOL(_PAGE_CACHE);
1428 1432
1429static void prot_init_common(unsigned long page_none, 1433static void prot_init_common(unsigned long page_none,
1430 unsigned long page_shared, 1434 unsigned long page_shared,