aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/android
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2020-08-18 19:22:45 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-09-03 18:24:39 +0200
commit89320020d967e8f7affbc4488b85860b3a64c4c4 (patch)
tree265203f3a0e3345c37bfeb8269f3475e7e679098 /drivers/android
parentbinder: Modify comments (diff)
downloadlinux-dev-89320020d967e8f7affbc4488b85860b3a64c4c4.tar.xz
linux-dev-89320020d967e8f7affbc4488b85860b3a64c4c4.zip
binderfs: make symbol 'binderfs_fs_parameters' static
The sparse tool complains as follows: drivers/android/binderfs.c:66:32: warning: symbol 'binderfs_fs_parameters' was not declared. Should it be static? This variable is not used outside of binderfs.c, so this commit marks it static. Fixes: 095cf502b31e ("binderfs: port to new mount api") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Christian Brauner <christian.brauner@ubuntu.com> Link: https://lore.kernel.org/r/20200818112245.43891-1-weiyongjun1@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/android')
-rw-r--r--drivers/android/binderfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/android/binderfs.c b/drivers/android/binderfs.c
index 7b76fefde3f8..7b4f154f07e6 100644
--- a/drivers/android/binderfs.c
+++ b/drivers/android/binderfs.c
@@ -63,7 +63,7 @@ static const struct constant_table binderfs_param_stats[] = {
{}
};
-const struct fs_parameter_spec binderfs_fs_parameters[] = {
+static const struct fs_parameter_spec binderfs_fs_parameters[] = {
fsparam_u32("max", Opt_max),
fsparam_enum("stats", Opt_stats_mode, binderfs_param_stats),
{}