Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/powerpc/include Don't define pmap_t if _LOCORE is d...



details:   https://anonhg.NetBSD.org/src/rev/5188ac5bc875
branches:  trunk
changeset: 542726:5188ac5bc875
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Feb 05 01:27:34 2003 +0000

description:
Don't define pmap_t if _LOCORE is defined.

diffstat:

 sys/arch/powerpc/include/pmap.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 38e6e7af18d3 -r 5188ac5bc875 sys/arch/powerpc/include/pmap.h
--- a/sys/arch/powerpc/include/pmap.h   Wed Feb 05 00:50:14 2003 +0000
+++ b/sys/arch/powerpc/include/pmap.h   Wed Feb 05 01:27:34 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.h,v 1.31 2003/02/04 01:31:49 matt Exp $   */
+/*     $NetBSD: pmap.h,v 1.32 2003/02/05 01:27:34 matt Exp $   */
 
 #ifdef _KERNEL_OPT
 #include "opt_ppcarch.h"
@@ -9,5 +9,7 @@
 #elif defined(PPC_OEA)
 #include <powerpc/oea/pmap.h>
 #else
+#ifndef _LOCORE
 typedef struct pmap *pmap_t;
 #endif
+#endif



Home | Main Index | Thread Index | Old Index