VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Steven Whitehouse <swhiteho@redhat.com> 2008-10-13 10:46:57 +0100 committer: Linus Torvalds <torvalds@linux-foundation.org> 2008-10-13 10:10:37 -0700 commit: a447c0932445f92ce6f4c1bd020f62c5097a7842 parent: 54cebc68c81eacac41a21bdfe99dc889d3882c60
Commit Summary:
vfs: Use const for kernel parser table
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/autofs/inode.c b/fs/autofs/inode.c
index dda510d31f84..b70eea1e8c59 100644
--- a/fs/autofs/inode.c
+++ b/fs/autofs/inode.c
@@ -59,7 +59,7 @@ static const struct super_operations autofs_sops = {
 
 enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto};
 
-static match_table_t autofs_tokens = {
+static const match_table_t autofs_tokens = {
 	{Opt_fd, "fd=%u"},
 	{Opt_uid, "uid=%u"},
 	{Opt_gid, "gid=%u"},