diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-05-31 15:46:03 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-06-27 03:59:43 -0400 |
commit | dc0610518f9f01814783f14ba476b41c6ffb27cb (patch) | |
tree | 26d1616551683c2997fab819d68d7a2dd350dc42 /arch/m68k/kernel/setup_no.c | |
parent | 363737d66427c18edb321a06933ac999d9ce5d7f (diff) |
m68k: Replace m68k-specific _[se]bss by generic __bss_{start,stop}
BSS_SECTION() provides the __bss_{start,stop} symbols, so there's no need
to wrap our own _[se]bss around it.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Greg Ungerer<gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/kernel/setup_no.c')
-rw-r--r-- | arch/m68k/kernel/setup_no.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/kernel/setup_no.c b/arch/m68k/kernel/setup_no.c index 8a624ecf86b8..71fb29938dba 100644 --- a/arch/m68k/kernel/setup_no.c +++ b/arch/m68k/kernel/setup_no.c | |||
@@ -219,9 +219,9 @@ void __init setup_arch(char **cmdline_p) | |||
219 | #endif | 219 | #endif |
220 | 220 | ||
221 | pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n", | 221 | pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n", |
222 | _stext, _etext, _sdata, _edata, _sbss, _ebss); | 222 | _stext, _etext, _sdata, _edata, __bss_start, __bss_stop); |
223 | pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n ", | 223 | pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n ", |
224 | _ebss, memory_start, memory_start, memory_end); | 224 | __bss_stop, memory_start, memory_start, memory_end); |
225 | 225 | ||
226 | /* Keep a copy of command line */ | 226 | /* Keep a copy of command line */ |
227 | *cmdline_p = &command_line[0]; | 227 | *cmdline_p = &command_line[0]; |