fix fs/nfs/nfsroot.c compilation

This fixes the following compile error caused by commit
f9247273cb69ba101877e946d2d83044409cc8c5 ("UFS: add const to parser
token table"):

CC fs/nfs/nfsroot.o
/home/bunk/linux/kernel-2.6/git/linux-2.6/fs/nfs/nfsroot.c:130: error: tokens causes a section type conflict
make[3]: *** [fs/nfs/nfsroot.o] Error 1

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Adrian Bunk and committed by
Linus Torvalds
fb2e405f 4b9f12a3

+1 -1
+1 -1
fs/nfs/nfsroot.c
··· 127 Opt_err 128 }; 129 130 - static match_table_t __initdata tokens = { 131 {Opt_port, "port=%u"}, 132 {Opt_rsize, "rsize=%u"}, 133 {Opt_wsize, "wsize=%u"},
··· 127 Opt_err 128 }; 129 130 + static match_table_t __initconst tokens = { 131 {Opt_port, "port=%u"}, 132 {Opt_rsize, "rsize=%u"}, 133 {Opt_wsize, "wsize=%u"},