pgalloc.h 354 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_POWERPC_BOOK3S_PGALLOC_H
  3. #define _ASM_POWERPC_BOOK3S_PGALLOC_H
  4. #include <linux/mm.h>
  5. extern void tlb_remove_table(struct mmu_gather *tlb, void *table);
  6. #ifdef CONFIG_PPC64
  7. #include <asm/book3s/64/pgalloc.h>
  8. #else
  9. #include <asm/book3s/32/pgalloc.h>
  10. #endif
  11. #endif /* _ASM_POWERPC_BOOK3S_PGALLOC_H */