From: Jan Kara Date: Wed, 26 Feb 2025 16:57:51 +0000 (+0100) Subject: ext2: Make ext2_params_spec static X-Git-Tag: v6.15-rc1~84^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7624ccdef4f020325893534914fad549e51ac83;p=thirdparty%2Flinux.git ext2: Make ext2_params_spec static It isn't used outside of fs/ext2/super.c. Reported-by: kernel test robot Fixes: eab61d3260d7 ("ext2: convert to the new mount API") Signed-off-by: Jan Kara --- diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 4b894d16937d3..28ff47ec4be68 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -442,7 +442,7 @@ static const struct constant_table ext2_param_errors[] = { {} }; -const struct fs_parameter_spec ext2_param_spec[] = { +static const struct fs_parameter_spec ext2_param_spec[] = { fsparam_flag ("bsddf", Opt_bsd_df), fsparam_flag ("minixdf", Opt_minix_df), fsparam_flag ("grpid", Opt_grpid),