Blame view

arch/m68k/include/asm/pgalloc.h 405 Bytes
606333d64   Greg Ungerer   m68k: merge the m...
1
2
3
4
5
6
7
8
9
  #ifndef M68K_PGALLOC_H
  #define M68K_PGALLOC_H
  
  #include <linux/mm.h>
  #include <linux/highmem.h>
  #include <asm/setup.h>
  
  #ifdef CONFIG_MMU
  #include <asm/virtconvert.h>
74d479922   Greg Ungerer   m68k: create Cold...
10
11
12
  #if defined(CONFIG_COLDFIRE)
  #include <asm/mcf_pgalloc.h>
  #elif defined(CONFIG_SUN3)
606333d64   Greg Ungerer   m68k: merge the m...
13
  #include <asm/sun3_pgalloc.h>
49148020b   Sam Ravnborg   m68k,m68knommu: m...
14
  #else
606333d64   Greg Ungerer   m68k: merge the m...
15
  #include <asm/motorola_pgalloc.h>
49148020b   Sam Ravnborg   m68k,m68knommu: m...
16
  #endif
606333d64   Greg Ungerer   m68k: merge the m...
17
18
19
20
21
  
  extern void m68k_setup_node(int node);
  #endif
  
  #endif /* M68K_PGALLOC_H */