Skip to content

Commit 5c6ffe3

Browse files
javiercarrascocruzjbrun3t
authored andcommitted
clk: meson: a1: pll: Constify struct regmap_config
`a1_pll_regmap_cfg` 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-2-7d15a0671d6f@gmail.com Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
1 parent 4a7665b commit 5c6ffe3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/meson/a1-pll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ static struct clk_regmap *const a1_pll_regmaps[] = {
295295
&hifi_pll,
296296
};
297297

298-
static struct regmap_config a1_pll_regmap_cfg = {
298+
static const struct regmap_config a1_pll_regmap_cfg = {
299299
.reg_bits = 32,
300300
.val_bits = 32,
301301
.reg_stride = 4,

0 commit comments

Comments
 (0)