From a7624ccdef4f020325893534914fad549e51ac83 Mon Sep 17 00:00:00 2001 From: Jan Kara Date: Wed, 26 Feb 2025 17:57:51 +0100 Subject: [PATCH] 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 --- fs/ext2/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 4b894d16937d..28ff47ec4be6 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),