diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-12-17 18:59:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-17 20:15:12 -0500 |
commit | 275b8b8917b92822442d6739807a3e033ddbeb5e (patch) | |
tree | ab461a6271e2756e9c3225d218be7f4ff0a24f02 /arch/frv/kernel | |
parent | b3dd20709db2cab0da0ade1f246fd6e6ab1396eb (diff) |
frv: fix use of extinct _sbss and _ebss in debug code
Nowadays it should probably use __bss_start and __bss_stop
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv/kernel')
-rw-r--r-- | arch/frv/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/kernel/setup.c b/arch/frv/kernel/setup.c index b8993c87d3de..961e18495589 100644 --- a/arch/frv/kernel/setup.c +++ b/arch/frv/kernel/setup.c | |||
@@ -817,7 +817,7 @@ void __init setup_arch(char **cmdline_p) | |||
817 | printk("KERNEL -> TEXT=0x%06x-0x%06x DATA=0x%06x-0x%06x BSS=0x%06x-0x%06x\n", | 817 | printk("KERNEL -> TEXT=0x%06x-0x%06x DATA=0x%06x-0x%06x BSS=0x%06x-0x%06x\n", |
818 | (int) &_stext, (int) &_etext, | 818 | (int) &_stext, (int) &_etext, |
819 | (int) &_sdata, (int) &_edata, | 819 | (int) &_sdata, (int) &_edata, |
820 | (int) &_sbss, (int) &_ebss); | 820 | (int) &__bss_start, (int) &__bss_stop); |
821 | #endif | 821 | #endif |
822 | 822 | ||
823 | #ifdef CONFIG_VT | 823 | #ifdef CONFIG_VT |