Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

m68k: merge the mmu and non-mmu versions of pgalloc.h

Trivial merge of the mmu and non-mmu version of pgalloc.h

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>

+17 -28
+17 -3
arch/m68k/include/asm/pgalloc.h
··· 1 - #ifdef __uClinux__ 2 - #include "pgalloc_no.h" 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 + #ifdef CONFIG_SUN3 11 + #include <asm/sun3_pgalloc.h> 3 12 #else 4 - #include "pgalloc_mm.h" 13 + #include <asm/motorola_pgalloc.h> 5 14 #endif 15 + 16 + extern void m68k_setup_node(int node); 17 + #endif 18 + 19 + #endif /* M68K_PGALLOC_H */
-19
arch/m68k/include/asm/pgalloc_mm.h
··· 1 - 2 - #ifndef M68K_PGALLOC_H 3 - #define M68K_PGALLOC_H 4 - 5 - #include <linux/mm.h> 6 - #include <linux/highmem.h> 7 - #include <asm/setup.h> 8 - #include <asm/virtconvert.h> 9 - 10 - 11 - #ifdef CONFIG_SUN3 12 - #include <asm/sun3_pgalloc.h> 13 - #else 14 - #include <asm/motorola_pgalloc.h> 15 - #endif 16 - 17 - extern void m68k_setup_node(int node); 18 - 19 - #endif /* M68K_PGALLOC_H */
-6
arch/m68k/include/asm/pgalloc_no.h
··· 1 - #ifndef _M68KNOMMU_PGALLOC_H 2 - #define _M68KNOMMU_PGALLOC_H 3 - 4 - #include <asm/setup.h> 5 - 6 - #endif /* _M68KNOMMU_PGALLOC_H */