Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / sbmips / include / pmap.h
blob2024ba7211075255c9fba718a0fa7a2025cfc939
1 /* $NetBSD: pmap.h,v 1.1 2002/03/06 02:13:46 simonb Exp $ */
3 #include <mips/pmap.h>
5 /* uncached accesses are bad; all accesses should be cached (and coherent) */
6 #undef PMAP_PAGEIDLEZERO
7 #define PMAP_PAGEIDLEZERO(pa) (pmap_zero_page(pa), true)
9 int sbmips_cca_for_pa(paddr_t);
11 #undef PMAP_CCA_FOR_PA
12 #define PMAP_CCA_FOR_PA(pa) sbmips_cca_for_pa(pa)