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