16 lines
338 B
C
16 lines
338 B
C
/* $NetBSD: pmap.h,v 1.33 2006/08/05 21:26:49 sanjayl Exp $ */
|
|
|
|
#ifdef _KERNEL_OPT
|
|
#include "opt_ppcarch.h"
|
|
#endif
|
|
|
|
#ifdef PPC_IBM4XX
|
|
#include <powerpc/ibm4xx/pmap.h>
|
|
#elif defined(PPC_OEA) || defined (PPC_OEA64) || defined (PPC_OEA64_BRIDGE)
|
|
#include <powerpc/oea/pmap.h>
|
|
#else
|
|
#ifndef _LOCORE
|
|
typedef struct pmap *pmap_t;
|
|
#endif
|
|
#endif
|