diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2019-04-26 15:58:02 +0000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2019-05-03 01:20:24 +1000 |
commit | 696dffa24bd0e17c8bccb18467555c17cc15e62c (patch) | |
tree | 55eb5f4e23e430a8847919f23574414e7e28c308 /arch/powerpc/include/asm/mmu.h | |
parent | 737b434d3d55c0b3c23df4eab1ea5b33f8850f30 (diff) | |
download | lwn-696dffa24bd0e17c8bccb18467555c17cc15e62c.tar.gz lwn-696dffa24bd0e17c8bccb18467555c17cc15e62c.zip |
powerpc/mm: move pgtable_t in asm/mmu.h
pgtable_t is now identical for all subarches, move it to the
top level asm/mmu.h
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/mmu.h')
-rw-r--r-- | arch/powerpc/include/asm/mmu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/mmu.h b/arch/powerpc/include/asm/mmu.h index d86c5641bd97..ba94ce8c22d7 100644 --- a/arch/powerpc/include/asm/mmu.h +++ b/arch/powerpc/include/asm/mmu.h @@ -129,6 +129,9 @@ #ifndef __ASSEMBLY__ #include <linux/bug.h> #include <asm/cputable.h> +#include <asm/page.h> + +typedef pte_t *pgtable_t; #ifdef CONFIG_PPC_FSL_BOOK3E #include <asm/percpu.h> |