diff options
Diffstat (limited to 'include/asm-powerpc/mmu-hash64.h')
-rw-r--r-- | include/asm-powerpc/mmu-hash64.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-powerpc/mmu-hash64.h b/include/asm-powerpc/mmu-hash64.h index b8dca30bd0b5..ba32019c51dd 100644 --- a/include/asm-powerpc/mmu-hash64.h +++ b/include/asm-powerpc/mmu-hash64.h | |||
@@ -103,12 +103,12 @@ extern char initial_stab[]; | |||
103 | 103 | ||
104 | #ifndef __ASSEMBLY__ | 104 | #ifndef __ASSEMBLY__ |
105 | 105 | ||
106 | typedef struct { | 106 | struct hash_pte { |
107 | unsigned long v; | 107 | unsigned long v; |
108 | unsigned long r; | 108 | unsigned long r; |
109 | } hpte_t; | 109 | }; |
110 | 110 | ||
111 | extern hpte_t *htab_address; | 111 | extern struct hash_pte *htab_address; |
112 | extern unsigned long htab_size_bytes; | 112 | extern unsigned long htab_size_bytes; |
113 | extern unsigned long htab_hash_mask; | 113 | extern unsigned long htab_hash_mask; |
114 | 114 | ||