diff options
author | Anton Blanchard <anton@samba.org> | 2013-09-23 04:04:36 +0200 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-10-11 07:48:26 +0200 |
commit | 12f04f2be80dd8d9da24534828f3ab3189ca5af2 (patch) | |
tree | 0cdc5e766e3c3406286f808721ccd4ab9b134a20 /arch/powerpc/include/asm/mmu-hash64.h | |
parent | powerpc: Fix endian issues in VMX copy loops (diff) | |
download | linux-12f04f2be80dd8d9da24534828f3ab3189ca5af2.tar.xz linux-12f04f2be80dd8d9da24534828f3ab3189ca5af2.zip |
powerpc: Book 3S MMU little endian support
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/mmu-hash64.h')
-rw-r--r-- | arch/powerpc/include/asm/mmu-hash64.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/mmu-hash64.h b/arch/powerpc/include/asm/mmu-hash64.h index c4cf01197273..807014dde821 100644 --- a/arch/powerpc/include/asm/mmu-hash64.h +++ b/arch/powerpc/include/asm/mmu-hash64.h @@ -135,8 +135,8 @@ extern char initial_stab[]; #ifndef __ASSEMBLY__ struct hash_pte { - unsigned long v; - unsigned long r; + __be64 v; + __be64 r; }; extern struct hash_pte *htab_address; |