From: Randy Dunlap on
From: Randy Dunlap <randy.dunlap(a)oracle.com>

Fix g_ffs build error, add a needed header file:

drivers/usb/gadget/f_fs.c:1064:error: 'PAGE_CACHE_SIZE' undeclared (first use in this function)
drivers/usb/gadget/f_fs.c:1065:error: 'PAGE_CACHE_SHIFT' undeclared (first use in this function)

Signed-off-by: Randy Dunlap <randy.dunlap(a)oracle.com>
Cc: Michal Nazarewicz <m.nazarewicz(a)samsung.com>
---
drivers/usb/gadget/f_fs.c | 1 +
1 file changed, 1 insertion(+)

--- linux-next-20100510.orig/drivers/usb/gadget/f_fs.c
+++ linux-next-20100510/drivers/usb/gadget/f_fs.c
@@ -28,6 +28,7 @@
/* #define VERBOSE_DEBUG */

#include <linux/blkdev.h>
+#include <linux/pagemap.h>
#include <asm/unaligned.h>
#include <linux/smp_lock.h>

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/