diff options
author | Pantelis Antoniou <pantelis.antoniou@gmail.com> | 2005-09-14 14:19:14 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-14 14:34:17 -0700 |
commit | 8fd9808aec0198b25ff9f8bb19508d9492f86920 (patch) | |
tree | 57776de938e20b62ec0f9ed74cc4eb6e51594128 | |
parent | 84d370b906b0eb00277a841216987285cf4114d4 (diff) | |
download | linux-3.10-8fd9808aec0198b25ff9f8bb19508d9492f86920.tar.gz linux-3.10-8fd9808aec0198b25ff9f8bb19508d9492f86920.tar.bz2 linux-3.10-8fd9808aec0198b25ff9f8bb19508d9492f86920.zip |
[PATCH] ppc32 8xx: flush_tlb_range() declaration uses wrong pointer type
On 8xx flush_tlb_range() declaration is using a "struct mm_struct *"
pointer type while the function itself uses "struct vm_area_struct *".
Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/asm-ppc/tlbflush.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ppc/tlbflush.h b/include/asm-ppc/tlbflush.h index 9850f53f54b..9afee4ffc83 100644 --- a/include/asm-ppc/tlbflush.h +++ b/include/asm-ppc/tlbflush.h @@ -72,7 +72,7 @@ static inline void flush_tlb_page(struct vm_area_struct *vma, static inline void flush_tlb_page_nohash(struct vm_area_struct *vma, unsigned long vmaddr) { _tlbie(vmaddr); } -static inline void flush_tlb_range(struct mm_struct *mm, +static inline void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) { __tlbia(); } static inline void flush_tlb_kernel_range(unsigned long start, |