diff options
author | Paul Mundt <lethal@linux-sh.org> | 2011-01-14 15:46:50 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-01-14 15:46:50 +0900 |
commit | 8f82f0c7029d39b499389c8e225cf147fb83abe2 (patch) | |
tree | f0a7f6047f937f8541ff5e35bff61a1ae8fa859d /arch/sh | |
parent | 9c4bc1c2befbbdce4b9fd526e67a7a2ea143ffa2 (diff) |
sh: Fix up breakage from asm-generic/pgtable.h changes.
We require a forward declaration for mm_struct:
In file included from arch/sh/include/asm/pgtable.h:163,
from arch/sh/include/asm/io.h:21,
from arch/sh/kernel/machvec.c:20:
include/asm-generic/pgtable.h:104: error: 'struct mm_struct' declared inside parameter list
include/asm-generic/pgtable.h: In function 'ptep_get_and_clear_full':
include/asm-generic/pgtable.h:107: error: passing argument 1 of 'ptep_get_and_clear' from incompatible pointer type
include/asm-generic/pgtable.h:70: note: expected 'struct mm_struct *' but argument is of type 'struct mm_struct *'
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/include/asm/pgtable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/include/asm/pgtable.h b/arch/sh/include/asm/pgtable.h index 083ea068e81..db85916b9e9 100644 --- a/arch/sh/include/asm/pgtable.h +++ b/arch/sh/include/asm/pgtable.h @@ -134,6 +134,7 @@ typedef pte_t *pte_addr_t; extern void pgtable_cache_init(void); struct vm_area_struct; +struct mm_struct; extern void __update_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte); |