summaryrefslogtreecommitdiff
path: root/arch/h8300/mm
diff options
context:
space:
mode:
Diffstat (limited to 'arch/h8300/mm')
-rw-r--r--arch/h8300/mm/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/h8300/mm/init.c b/arch/h8300/mm/init.c
index 973369c32a95..ee4c9dbf58cc 100644
--- a/arch/h8300/mm/init.c
+++ b/arch/h8300/mm/init.c
@@ -123,7 +123,7 @@ void __init mem_init(void)
int codek = 0, datak = 0, initk = 0;
/* DAVIDM look at setup memory map generically with reserved area */
unsigned long tmp;
- extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
+ extern char _etext, _stext, _sdata, __bss_stop, __init_begin, __init_end;
extern unsigned long _ramend, _ramstart;
unsigned long len = &_ramend - &_ramstart;
unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
@@ -143,7 +143,7 @@ void __init mem_init(void)
totalram_pages = free_all_bootmem();
codek = (&_etext - &_stext) >> 10;
- datak = (&_ebss - &_sdata) >> 10;
+ datak = (&__bss_stop - &_sdata) >> 10;
initk = (&__init_begin - &__init_end) >> 10;
tmp = nr_free_pages() << PAGE_SHIFT;