diff options
author | Alexander Beregalov <a.beregalov@gmail.com> | 2009-04-07 21:21:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-08 10:21:43 -0700 |
commit | 2b3fffefea993a94c386b2d96de2d09469c343d1 (patch) | |
tree | 1c04ecf4c40e9ca617c9b44e7a76aaa85769d2ee /fs/befs | |
parent | 577c9c456f0e1371cbade38eaf91ae8e8a308555 (diff) |
befs: fix build on parisc
fs/befs/super.c:85: error: 'PAGE_SIZE' undeclared
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/befs/super.c b/fs/befs/super.c index 41f2b4d0093e..ca40f828f64d 100644 --- a/fs/befs/super.c +++ b/fs/befs/super.c @@ -8,6 +8,7 @@ */ #include <linux/fs.h> +#include <asm/page.h> /* for PAGE_SIZE */ #include "befs.h" #include "super.h" |