1 #ifndef M68K_PGALLOC_H 2 #define M68K_PGALLOC_H 3 4 #include <linux/mm.h> 5 #include <linux/highmem.h> 6 #include <asm/setup.h> 7 8 #ifdef CONFIG_MMU 9 #include <asm/virtconvert.h> 10 #ifdef CONFIG_SUN3 11 #include <asm/sun3_pgalloc.h> 12 #else 13 #include <asm/motorola_pgalloc.h> 14 #endif 15 16 extern void m68k_setup_node(int node); 17 #endif 18 19 #endif /* M68K_PGALLOC_H */ 20