#ifndef _ASM_POWERPC_PGALLOC_H #define _ASM_POWERPC_PGALLOC_H #ifdef __KERNEL__ #include #include #ifdef CONFIG_PPC_BOOK3E extern void tlb_flush_pgtable(struct mmu_gather *tlb, unsigned long address); #else /* CONFIG_PPC_BOOK3E */ static inline void tlb_flush_pgtable(struct mmu_gather *tlb, unsigned long address) { } #endif /* !CONFIG_PPC_BOOK3E */ #ifdef CONFIG_PPC64 #include #else #include #endif #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_PGALLOC_H */