diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2013-10-02 15:50:56 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2013-11-26 05:09:16 -0500 |
commit | 799300840c18e7fdc0a3dace70d9b56a189fd1ab (patch) | |
tree | d26513a11a09c256a9ae62d17c2f656ae9502f01 /arch/m68k/kernel | |
parent | 4c3c522bcebe16a717d7a809fd14b11823794027 (diff) |
m68k/UAPI: Move generic definitions to <asm/bootinfo.h>
Move generic definitions used by bootstraps to uapi/asm/bootinfo.h:
- Machine types,
- CPU, FPU, and MMU types,
- struct mem_info.
Keep a copy of struct mem_info for in-kernel use, and rename it to struct
m68k_mem_info, as the exported one will be modified later.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r-- | arch/m68k/kernel/setup_mm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/kernel/setup_mm.c b/arch/m68k/kernel/setup_mm.c index 18423a843379..cff9845708c0 100644 --- a/arch/m68k/kernel/setup_mm.c +++ b/arch/m68k/kernel/setup_mm.c | |||
@@ -71,10 +71,10 @@ EXPORT_SYMBOL(m68k_num_memory); | |||
71 | int m68k_realnum_memory; | 71 | int m68k_realnum_memory; |
72 | EXPORT_SYMBOL(m68k_realnum_memory); | 72 | EXPORT_SYMBOL(m68k_realnum_memory); |
73 | unsigned long m68k_memoffset; | 73 | unsigned long m68k_memoffset; |
74 | struct mem_info m68k_memory[NUM_MEMINFO]; | 74 | struct m68k_mem_info m68k_memory[NUM_MEMINFO]; |
75 | EXPORT_SYMBOL(m68k_memory); | 75 | EXPORT_SYMBOL(m68k_memory); |
76 | 76 | ||
77 | static struct mem_info m68k_ramdisk __initdata; | 77 | static struct m68k_mem_info m68k_ramdisk __initdata; |
78 | 78 | ||
79 | static char m68k_command_line[CL_SIZE] __initdata; | 79 | static char m68k_command_line[CL_SIZE] __initdata; |
80 | 80 | ||