1 /* $NetBSD: pmap.h,v 1.33.82.1 2011/01/07 01:58:43 matt Exp $ */ 2 3 #ifdef _KERNEL_OPT 4 #include "opt_ppcarch.h" 5 #endif 6 7 #ifdef PPC_IBM4XX 8 #include <powerpc/ibm4xx/pmap.h> 9 #elif defined(PPC_BOOKE) 10 #include <powerpc/booke/pmap.h> 11 #elif defined(PPC_OEA) || defined (PPC_OEA64) || defined (PPC_OEA64_BRIDGE) 12 #include <powerpc/oea/pmap.h> 13 #else 14 #ifndef _LOCORE 15 typedef struct pmap *pmap_t; 16 #endif 17 #endif 18