Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0c1eafdb063a3701eff24d21eb245e3b1d4ac7df
Commit:     0c1eafdb063a3701eff24d21eb245e3b1d4ac7df
Parent:     42fd552e8647316757ded0176466c41d17934dcf
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Fri Aug 10 13:01:06 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Aug 11 15:47:41 2007 -0700

    mtdchar build fix
    
    sh:
    
    drivers/mtd/mtdchar.c: In function `mtd_mmap':
    drivers/mtd/mtdchar.c:817: error: dereferencing pointer to incomplete type
    drivers/mtd/mtdchar.c:817: error: `VM_SHARED' undeclared (first use in this 
function)
    drivers/mtd/mtdchar.c:817: error: (Each undeclared identifier is reported 
only once
    
    Cc: David Woodhouse <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/mtd/mtdchar.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index 8c86b80..d091b24 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -7,6 +7,7 @@
 
 #include <linux/device.h>
 #include <linux/fs.h>
+#include <linux/mm.h>
 #include <linux/err.h>
 #include <linux/init.h>
 #include <linux/kernel.h>
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to