Skip to content

Commit

Permalink
Fix nfsroot build
Browse files Browse the repository at this point in the history
  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>
  • Loading branch information
Ralf Baechle authored and Linus Torvalds committed May 5, 2007
1 parent 68762f3 commit 989485c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 989485c

Please sign in to comment.