Skip to content

Commit 02cc1df

Browse files
javiercarrascocruzjbrun3t
authored andcommitted
clk: meson: s4: peripherals: 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 <[email protected]> Reviewed-by: Neil Armstrong <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jerome Brunet <[email protected]>
1 parent 11c7c1b commit 02cc1df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/meson/s4-peripherals.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3747,7 +3747,7 @@ static struct clk_regmap *const s4_periphs_clk_regmaps[] = {
37473747
&s4_adc_extclk_in_gate,
37483748
};
37493749

3750-
static struct regmap_config clkc_regmap_config = {
3750+
static const struct regmap_config clkc_regmap_config = {
37513751
.reg_bits = 32,
37523752
.val_bits = 32,
37533753
.reg_stride = 4,

0 commit comments

Comments
 (0)