nds32: convert to setup_initial_init_mm()
Use setup_initial_init_mm() helper to simplify code. Link: https://lkml.kernel.org/r/20210608083418.137226-9-wangkefeng.wang@huawei.com Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Cc: Nick Hu <nickhu@andestech.com> Cc: Greentime Hu <green.hu@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>pull/452/merge
parent
ed408db174
commit
de26fb41c2
|
|
@ -294,10 +294,7 @@ void __init setup_arch(char **cmdline_p)
|
||||||
|
|
||||||
setup_cpuinfo();
|
setup_cpuinfo();
|
||||||
|
|
||||||
init_mm.start_code = (unsigned long)&_stext;
|
setup_initial_init_mm(_stext, _etext, _edata, _end);
|
||||||
init_mm.end_code = (unsigned long)&_etext;
|
|
||||||
init_mm.end_data = (unsigned long)&_edata;
|
|
||||||
init_mm.brk = (unsigned long)&_end;
|
|
||||||
|
|
||||||
/* setup bootmem allocator */
|
/* setup bootmem allocator */
|
||||||
setup_memory();
|
setup_memory();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue