Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 275b8b89 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds
Browse files

frv: fix use of extinct _sbss and _ebss in debug code



Nowadays it should probably use __bss_start and __bss_stop

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b3dd2070
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -817,7 +817,7 @@ void __init setup_arch(char **cmdline_p)
	printk("KERNEL -> TEXT=0x%06x-0x%06x DATA=0x%06x-0x%06x BSS=0x%06x-0x%06x\n",
	       (int) &_stext, (int) &_etext,
	       (int) &_sdata, (int) &_edata,
	       (int) &_sbss, (int) &_ebss);
	       (int) &__bss_start, (int) &__bss_stop);
#endif

#ifdef CONFIG_VT
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ void __init mem_init(void)

#else
	codek = (_etext - _stext) >> 10;
	datak = 0; //(_ebss - _sdata) >> 10;
	datak = 0; //(__bss_stop - _sdata) >> 10;
#endif

	tmp = nr_free_pages() << PAGE_SHIFT;