diff options
author | Kefeng Wang <[email protected]> | 2021-07-07 18:08:37 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2021-07-08 11:48:21 -0700 |
commit | 9772bdef22bf43f3ca467e22c7285331c212d5bf (patch) | |
tree | 00d8c2106b784f1be0856d8997a10ca45a4d35e3 | |
parent | 79886ddced9b2953fe5b45c7883935bca073d28c (diff) |
h8300: convert to setup_initial_init_mm()
Use setup_initial_init_mm() helper to simplify code.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Kefeng Wang <[email protected]>
Cc: Yoshinori Sato <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | arch/h8300/kernel/setup.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/h8300/kernel/setup.c b/arch/h8300/kernel/setup.c index c3590b2e9592..61091a76eb7e 100644 --- a/arch/h8300/kernel/setup.c +++ b/arch/h8300/kernel/setup.c @@ -95,10 +95,7 @@ void __init setup_arch(char **cmdline_p) { unflatten_and_copy_device_tree(); - 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) 0; + setup_initial_init_mm(_stext, _etext, _edata, NULL); pr_notice("\r\n\nuClinux " CPU "\n"); pr_notice("Flat model support (C) 1998,1999 Kenneth Albanowski, D. Jeff Dionne\n"); |