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

Commit 69984d98 authored by Wei Yongjun's avatar Wei Yongjun Committed by Bernhard Thoben
Browse files

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: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Acked-by: default avatarChristian Brauner <christian.brauner@ubuntu.com>
Link: https://lore.kernel.org/r/20200818112245.43891-1-weiyongjun1@huawei.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 89320020d967e8f7affbc4488b85860b3a64c4c4)
parent 6dfcc3ac
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -65,7 +65,13 @@ static const match_table_t tokens = {
	{ Opt_err, NULL     }
};

static inline struct binderfs_info *BINDERFS_I(const struct inode *inode)
static const struct fs_parameter_spec binderfs_fs_parameters[] = {
	fsparam_u32("max",	Opt_max),
	fsparam_enum("stats",	Opt_stats_mode, binderfs_param_stats),
	{}
};

static inline struct binderfs_info *BINDERFS_SB(const struct super_block *sb)
{
	return inode->i_sb->s_fs_info;
}