diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2016-07-26 21:55:27 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-08-01 11:14:55 +1000 |
commit | 2537b09c939fca26447f0ac3e688691de06eadda (patch) | |
tree | 18a5143d6114ab849d91e85eda6d81416a767d37 /arch/powerpc/include | |
parent | bacf9cf88303c0df5794ca45dd9f297740a00913 (diff) | |
download | op-kernel-dev-2537b09c939fca26447f0ac3e688691de06eadda.zip op-kernel-dev-2537b09c939fca26447f0ac3e688691de06eadda.tar.gz |
powerpc/mm: Do radix device tree scanning earlier
Like we just did for hash, split the device tree scanning parts out and
call them from mmu_early_init_devtree().
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/book3s/64/mmu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/book3s/64/mmu.h b/arch/powerpc/include/asm/book3s/64/mmu.h index 358f141..9ee00c2 100644 --- a/arch/powerpc/include/asm/book3s/64/mmu.h +++ b/arch/powerpc/include/asm/book3s/64/mmu.h @@ -109,6 +109,7 @@ extern int mmu_io_psize; /* MMU initialization */ void mmu_early_init_devtree(void); void hash__early_init_devtree(void); +void radix__early_init_devtree(void); extern void radix_init_native(void); extern void hash__early_init_mmu(void); extern void radix__early_init_mmu(void); |