diff options
| author | Adrian Bunk <adrian.bunk@movial.fi> | 2008-03-03 20:07:42 +0200 | 
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2008-03-06 11:11:49 +0900 | 
| commit | c31f2f3d066d49147ce297c7207cc2d49dd20382 (patch) | |
| tree | 451de7505dddb402aab0d1c3f45dce368947d540 /arch/sh | |
| parent | 29e8c3c304b62f31b799565c9ee85d42bd163f80 (diff) | |
sh/mm/pg-sh7705.c must #include <linux/fs.h>
This patch fixes the following compile error:
<--  snip  -->
...
  CC      arch/sh/mm/pg-sh7705.o
/home/bunk/linux/kernel-2.6/git/linux-2.6/arch/sh/mm/pg-sh7705.c: In function 'ptep_get_and_clear':
/home/bunk/linux/kernel-2.6/git/linux-2.6/arch/sh/mm/pg-sh7705.c:130: error: implicit declaration of function 'mapping_writably_mapped'
make[2]: *** [arch/sh/mm/pg-sh7705.o] Error 1
<--  snip  -->
Signed-off-by: Adrian Bunk <adrian.bunk@movial.fi>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
| -rw-r--r-- | arch/sh/mm/pg-sh7705.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/mm/pg-sh7705.c b/arch/sh/mm/pg-sh7705.c index a4b015f95a3a..7f885b7f8aff 100644 --- a/arch/sh/mm/pg-sh7705.c +++ b/arch/sh/mm/pg-sh7705.c @@ -14,6 +14,7 @@  #include <linux/mman.h>  #include <linux/mm.h>  #include <linux/threads.h> +#include <linux/fs.h>  #include <asm/addrspace.h>  #include <asm/page.h>  #include <asm/pgtable.h>  | 
