Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb8a3b53 authored by Adrian Bunk's avatar Adrian Bunk Committed by Trond Myklebust
Browse files

fix fs/nfs/nfsroot.c compilation



This patch fixes the following compile error caused by
commit f9247273
(UFS: add const to parser token tabl):

<--  snip  -->

...
  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

<--  snip  -->

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 691beb13
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -127,7 +127,7 @@ enum {
	Opt_err
	Opt_err
};
};


static match_table_t __initdata tokens = {
static match_table_t __initconst tokens = {
	{Opt_port, "port=%u"},
	{Opt_port, "port=%u"},
	{Opt_rsize, "rsize=%u"},
	{Opt_rsize, "rsize=%u"},
	{Opt_wsize, "wsize=%u"},
	{Opt_wsize, "wsize=%u"},