[PATCH v2 08/15] nds32: convert to setup_initial_init_mm()
From: Kefeng Wang <hidden>
Date: 2021-06-04 06:58:12
Also in:
lkml
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Kefeng Wang <hidden>
Date: 2021-06-04 06:58:12
Also in:
lkml
Subsystem:
the rest · Maintainer:
Linus Torvalds
Use setup_initial_init_mm() helper to simplify code. Cc: Nick Hu <redacted> Cc: Greentime Hu <redacted> Signed-off-by: Kefeng Wang <redacted> --- arch/nds32/kernel/setup.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/arch/nds32/kernel/setup.c b/arch/nds32/kernel/setup.c
index af82e996f412..41725eaf8bac 100644
--- a/arch/nds32/kernel/setup.c
+++ b/arch/nds32/kernel/setup.c@@ -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();
--
2.26.2