pgalloc.h 405 B

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