diff options
author | Anton Blanchard <anton@samba.org> | 2014-09-17 14:15:36 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-11-09 23:59:26 +0100 |
commit | 21098b9e07476deb3f40acd7e51cffbffb4ef865 (patch) | |
tree | a61d80fa76e978dc86448c45de74bd1a3e7b5ad1 /arch/powerpc/mm/mem.c | |
parent | powerpc: Remove superfluous bootmem includes (diff) | |
download | linux-21098b9e07476deb3f40acd7e51cffbffb4ef865.tar.xz linux-21098b9e07476deb3f40acd7e51cffbffb4ef865.zip |
powerpc: Move sparse_init() into initmem_init
We did part of sparse initialisation in setup_arch and part in
initmem_init. Put them together.
Signed-off-by: Anton Blanchard <anton@samba.org>
Tested-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm/mem.c')
-rw-r--r-- | arch/powerpc/mm/mem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index e076d19c095b..b7285a5870f8 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c @@ -205,6 +205,7 @@ void __init initmem_init(void) /* XXX need to clip this if using highmem? */ sparse_memory_present_with_active_regions(0); + sparse_init(); } /* mark pages that don't exist as nosave */ |