nds32: convert to setup_initial_init_mm()
authorKefeng Wang <wangkefeng.wang@huawei.com>
Thu, 8 Jul 2021 01:08:43 +0000 (18:08 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 8 Jul 2021 18:48:21 +0000 (11:48 -0700)
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>
arch/nds32/kernel/setup.c

index af82e99..41725ea 100644 (file)
@@ -294,10 +294,7 @@ void __init setup_arch(char **cmdline_p)
 
        setup_cpuinfo();
 
-       init_mm.start_code = (unsigned long)&_stext;
-       init_mm.end_code = (unsigned long)&_etext;
-       init_mm.end_data = (unsigned long)&_edata;
-       init_mm.brk = (unsigned long)&_end;
+       setup_initial_init_mm(_stext, _etext, _edata, _end);
 
        /* setup bootmem allocator */
        setup_memory();