aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/parser.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-05-05 22:05:11 +0100
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-05 14:15:32 -0700
commit989485c190cc6a64e5a21d98ef2d752df1db8c27 (patch)
treeda2f2cb977df552d20784f71bfbfa342908ab9da /include/linux/parser.h
parentMerge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 (diff)
downloadlinux-dev-989485c190cc6a64e5a21d98ef2d752df1db8c27.tar.xz
linux-dev-989485c190cc6a64e5a21d98ef2d752df1db8c27.zip
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 <ralf@linux-mips.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/parser.h')
-rw-r--r--include/linux/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/parser.h b/include/linux/parser.h
index 86676f600992..26b2bdfcaf06 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};