Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=989485c190cc6a64e5a21d98ef2d752df1db8c27
Commit:     989485c190cc6a64e5a21d98ef2d752df1db8c27
Parent:     68762f3d8e7ea644fae1f490f9850ebf462548bd
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Sat May 5 22:05:11 2007 +0100
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat May 5 14:15:32 2007 -0700

    Fix nfsroot build
    
      CC      fs/nfs/nfsroot.o
    fs/nfs/nfsroot.c:131: error: tokens causes a section type conflict
    make[2]: *** [fs/nfs/nfsroot.o] Error 1
    
    This is due to mixing const and non-const content in the same section
    which halfway recent gccs absolutely hate.  Fixed by dropping the const.
    
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/linux/parser.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/parser.h b/include/linux/parser.h
index 86676f6..26b2bdf 100644
--- a/include/linux/parser.h
+++ b/include/linux/parser.h
@@ -14,7 +14,7 @@ struct match_token {
        const char *pattern;
 };
 
-typedef const struct match_token match_table_t[];
+typedef struct match_token match_table_t[];
 
 /* Maximum number of arguments that match_token will find in a pattern */
 enum {MAX_OPT_ARGS = 3};
-
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