1 #ifndef _ASM_POWERPC_BOOK3S_PGALLOC_H 2 #define _ASM_POWERPC_BOOK3S_PGALLOC_H 3 4 #include <linux/mm.h> 5 6 extern void tlb_remove_table(struct mmu_gather *tlb, void *table); 7 static inline void tlb_flush_pgtable(struct mmu_gather *tlb, 8 unsigned long address) 9 { 10 11 } 12 13 #ifdef CONFIG_PPC64 14 #include <asm/book3s/64/pgalloc.h> 15 #else 16 #include <asm/book3s/32/pgalloc.h> 17 #endif 18 19 #endif /* _ASM_POWERPC_BOOK3S_PGALLOC_H */ 20