Commit 2b3fffefea993a94c386b2d96de2d09469c343d1

Authored by Alexander Beregalov
Committed by Linus Torvalds
1 parent 577c9c456f

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>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -8,6 +8,7 @@
8 8 */
9 9  
10 10 #include <linux/fs.h>
  11 +#include <asm/page.h> /* for PAGE_SIZE */
11 12  
12 13 #include "befs.h"
13 14 #include "super.h"