From: Javier Carrasco Date: Wed, 3 Jul 2024 09:50:19 +0000 (+0200) Subject: clk: meson: s4: pll: Constify struct regmap_config X-Git-Tag: v6.12-rc1~83^2~2^2^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3d0e8b6edd6b08f72e07e1230f371f6ca93531e4;p=thirdparty%2Flinux.git clk: meson: s4: pll: Constify struct regmap_config `clkc_regmap_config` is not modified and can be declared as const to move its data to a read-only section. Signed-off-by: Javier Carrasco Reviewed-by: Neil Armstrong Link: https://lore.kernel.org/r/20240703-clk-const-regmap-v1-6-7d15a0671d6f@gmail.com Signed-off-by: Jerome Brunet --- diff --git a/drivers/clk/meson/s4-pll.c b/drivers/clk/meson/s4-pll.c index c2afade24f9f5..27c10fc499beb 100644 --- a/drivers/clk/meson/s4-pll.c +++ b/drivers/clk/meson/s4-pll.c @@ -799,7 +799,7 @@ static const struct reg_sequence s4_init_regs[] = { { .reg = ANACTRL_MPLL_CTRL0, .def = 0x00000543 }, }; -static struct regmap_config clkc_regmap_config = { +static const struct regmap_config clkc_regmap_config = { .reg_bits = 32, .val_bits = 32, .reg_stride = 4,