pgalloc.h 444 B

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