Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/include/arm32 Define PAGESHIFT using PGSHIFT



details:   https://anonhg.NetBSD.org/src/rev/0c6c6b782882
branches:  trunk
changeset: 785150:0c6c6b782882
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Feb 27 17:50:07 2013 +0000

description:
Define PAGESHIFT using PGSHIFT

diffstat:

 sys/arch/arm/include/arm32/vmparam.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 0e7bed6ecd19 -r 0c6c6b782882 sys/arch/arm/include/arm32/vmparam.h
--- a/sys/arch/arm/include/arm32/vmparam.h      Wed Feb 27 16:55:39 2013 +0000
+++ b/sys/arch/arm/include/arm32/vmparam.h      Wed Feb 27 17:50:07 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.28 2013/02/25 16:12:13 matt Exp $        */
+/*     $NetBSD: vmparam.h,v 1.29 2013/02/27 17:50:07 matt Exp $        */
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -73,7 +73,7 @@
  * While the ARM architecture defines Section mappings, large pages,
  * and small pages, the standard page size is (and will always be) 4K.
  */
-#define        PAGE_SHIFT      12
+#define        PAGE_SHIFT      PGSHIFT
 #define        PAGE_SIZE       (1 << PAGE_SHIFT)
 #define        PAGE_MASK       (PAGE_SIZE - 1)
 



Home | Main Index | Thread Index | Old Index