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