summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKefeng Wang <wangkefeng.wang@huawei.com>2021-06-25 14:37:52 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2021-07-09 12:26:03 +1000
commitf3013c8d42cf54dbcd000fb0dc9231641c14ea67 (patch)
tree70cb3b1321613860db356109a45b639c15eee495
parent56da756605d8010f4cc90b314f31e8b7e960a7c1 (diff)
downloadlinux-f3013c8d42cf54dbcd000fb0dc9231641c14ea67.tar.gz
linux-f3013c8d42cf54dbcd000fb0dc9231641c14ea67.tar.xz
csky: convert to setup_initial_init_mm()
Use setup_initial_init_mm() helper to simplify code. Link: https://lkml.kernel.org/r/20210608083418.137226-6-wangkefeng.wang@huawei.com Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Acked-by: Guo Ren <guoren@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--arch/csky/kernel/setup.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/csky/kernel/setup.c b/arch/csky/kernel/setup.c
index e93bc6f74432..c64e7be2045b 100644
--- a/arch/csky/kernel/setup.c
+++ b/arch/csky/kernel/setup.c
@@ -78,10 +78,7 @@ void __init setup_arch(char **cmdline_p)
pr_info("Phys. mem: %ldMB\n",
(unsigned long) memblock_phys_mem_size()/1024/1024);
- 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);
parse_early_param();