29d439f898
which is now the "API" provided by the pmap module. pmap_kernel() remains as the syntactic sugar. Bonus cosmetics round: move all the pmap_t pointer typedefs into uvm_pmap.h. Thanks to Greg Oster for providing cpu muscle for doing test builds.
13 lines
284 B
C
13 lines
284 B
C
/* $NetBSD: pmap.h,v 1.34 2008/12/09 20:45:45 pooka 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
|
|
#endif
|