pgalloc.h 339 B

12345678910111213141516171819
  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. #ifdef CONFIG_SUN3
  9. #include <asm/sun3_pgalloc.h>
  10. #else
  11. #include <asm/motorola_pgalloc.h>
  12. #endif
  13. extern void m68k_setup_node(int node);
  14. #endif
  15. #endif /* M68K_PGALLOC_H */