VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 Tags
author: Luo Jiaxing <luojiaxing@huawei.com> 2020-10-13 16:48:30 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2020-10-13 18:38:27 -0700 commit: 97383c741b061ed2835802264c16784e42e20fe0 parent: da5c1c0bb316e3a0454d2c6980e9c2b618c149b0
Commit Summary:
fs_parse: mark fs_param_bad_value() as static
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/fs_parser.c b/fs/fs_parser.c
index ab53e42a874a..68b0148f4bb8 100644
--- a/fs/fs_parser.c
+++ b/fs/fs_parser.c
@@ -189,7 +189,7 @@ out:
 }
 EXPORT_SYMBOL(fs_lookup_param);
 
-int fs_param_bad_value(struct p_log *log, struct fs_parameter *param)
+static int fs_param_bad_value(struct p_log *log, struct fs_parameter *param)
 {
 	return inval_plog(log, "Bad value for '%s'", param->key);
 }