Skip to content

Commit 4a7665b

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/meson/a1-peripherals.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2183,7 +2183,7 @@ static struct clk_regmap *const a1_periphs_regmaps[] = {
21832183
&dmc_sel2,
21842184
};
21852185

2186-
static struct regmap_config a1_periphs_regmap_cfg = {
2186+
static const struct regmap_config a1_periphs_regmap_cfg = {
21872187
.reg_bits = 32,
21882188
.val_bits = 32,
21892189
.reg_stride = 4,

0 commit comments

Comments
 (0)