diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2016-07-26 12:09:30 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-08-01 03:14:53 +0200 |
commit | 1a01dc87e09b6e60d22c417e00f470a72f00ec80 (patch) | |
tree | 1520319bb743b3d5485ca95a8a48f97c5509f4cb /arch/powerpc/mm | |
parent | Merge tag 'powerpc-4.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/po... (diff) | |
download | linux-1a01dc87e09b6e60d22c417e00f470a72f00ec80.tar.xz linux-1a01dc87e09b6e60d22c417e00f470a72f00ec80.zip |
powerpc/mm: Add mmu_early_init_devtree()
Empty for now, but we'll add to it in the next patch.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r-- | arch/powerpc/mm/init_64.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/mm/init_64.c b/arch/powerpc/mm/init_64.c index 33709bdb0419..d0fb33ac3db2 100644 --- a/arch/powerpc/mm/init_64.c +++ b/arch/powerpc/mm/init_64.c @@ -411,3 +411,9 @@ struct page *realmode_pfn_to_page(unsigned long pfn) EXPORT_SYMBOL_GPL(realmode_pfn_to_page); #endif /* CONFIG_SPARSEMEM_VMEMMAP/CONFIG_FLATMEM */ + +#ifdef CONFIG_PPC_STD_MMU_64 +void __init mmu_early_init_devtree(void) +{ +} +#endif /* CONFIG_PPC_STD_MMU_64 */ |