Skip to content

Commit 11c7c1b

Browse files
javiercarrascocruzjbrun3t
authored andcommitted
clk: meson: c3: 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 <javier.carrasco.cruz@gmail.com> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://lore.kernel.org/r/20240703-clk-const-regmap-v1-4-7d15a0671d6f@gmail.com Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
1 parent af3e450 commit 11c7c1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/meson/c3-pll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ static struct clk_regmap *const c3_pll_clk_regmaps[] = {
678678
&mclk1,
679679
};
680680

681-
static struct regmap_config clkc_regmap_config = {
681+
static const struct regmap_config clkc_regmap_config = {
682682
.reg_bits = 32,
683683
.val_bits = 32,
684684
.reg_stride = 4,

0 commit comments

Comments
 (0)