diff options
Diffstat (limited to 'arch/powerpc/mm/mmu_decl.h')
-rw-r--r-- | arch/powerpc/mm/mmu_decl.h | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/arch/powerpc/mm/mmu_decl.h b/arch/powerpc/mm/mmu_decl.h index 2558c34eedaa..c94a64fd3c01 100644 --- a/arch/powerpc/mm/mmu_decl.h +++ b/arch/powerpc/mm/mmu_decl.h | |||
@@ -8,7 +8,6 @@ | |||
8 | * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au) | 8 | * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au) |
9 | * and Cort Dougan (PReP) (cort@cs.nmt.edu) | 9 | * and Cort Dougan (PReP) (cort@cs.nmt.edu) |
10 | * Copyright (C) 1996 Paul Mackerras | 10 | * Copyright (C) 1996 Paul Mackerras |
11 | * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk). | ||
12 | * | 11 | * |
13 | * Derived from "arch/i386/mm/init.c" | 12 | * Derived from "arch/i386/mm/init.c" |
14 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds | 13 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
@@ -40,8 +39,8 @@ extern int __map_without_bats; | |||
40 | extern unsigned long ioremap_base; | 39 | extern unsigned long ioremap_base; |
41 | extern unsigned int rtas_data, rtas_size; | 40 | extern unsigned int rtas_data, rtas_size; |
42 | 41 | ||
43 | struct _PTE; | 42 | struct hash_pte; |
44 | extern struct _PTE *Hash, *Hash_end; | 43 | extern struct hash_pte *Hash, *Hash_end; |
45 | extern unsigned long Hash_size, Hash_mask; | 44 | extern unsigned long Hash_size, Hash_mask; |
46 | 45 | ||
47 | extern unsigned int num_tlbcam_entries; | 46 | extern unsigned int num_tlbcam_entries; |
@@ -90,16 +89,4 @@ static inline void flush_HPTE(unsigned context, unsigned long va, | |||
90 | else | 89 | else |
91 | _tlbie(va); | 90 | _tlbie(va); |
92 | } | 91 | } |
93 | #else /* CONFIG_PPC64 */ | ||
94 | /* imalloc region types */ | ||
95 | #define IM_REGION_UNUSED 0x1 | ||
96 | #define IM_REGION_SUBSET 0x2 | ||
97 | #define IM_REGION_EXISTS 0x4 | ||
98 | #define IM_REGION_OVERLAP 0x8 | ||
99 | #define IM_REGION_SUPERSET 0x10 | ||
100 | |||
101 | extern struct vm_struct * im_get_free_area(unsigned long size); | ||
102 | extern struct vm_struct * im_get_area(unsigned long v_addr, unsigned long size, | ||
103 | int region_type); | ||
104 | extern void im_free(void *addr); | ||
105 | #endif | 92 | #endif |