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