On Sat, Oct 03, 2020 at 05:18:08PM -0700, Joe Perches wrote: > These should be const, so make it so. > > Signed-off-by: Joe Perches <j...@perches.com>
Queued for testing and review, thank you! Thanx, Paul > --- > kernel/rcu/tree.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c > index f78ee759af9c..c4732bb80818 100644 > --- a/kernel/rcu/tree.c > +++ b/kernel/rcu/tree.c > @@ -552,12 +552,12 @@ static int param_set_next_fqs_jiffies(const char *val, > const struct kernel_param > return ret; > } > > -static struct kernel_param_ops first_fqs_jiffies_ops = { > +static const struct kernel_param_ops first_fqs_jiffies_ops = { > .set = param_set_first_fqs_jiffies, > .get = param_get_ulong, > }; > > -static struct kernel_param_ops next_fqs_jiffies_ops = { > +static const struct kernel_param_ops next_fqs_jiffies_ops = { > .set = param_set_next_fqs_jiffies, > .get = param_get_ulong, > }; > -- > 2.26.0 >