]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
clk: meson: s4: peripherals: Constify struct regmap_config
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Wed, 3 Jul 2024 09:50:18 +0000 (11:50 +0200)
committerJerome Brunet <jbrunet@baylibre.com>
Wed, 10 Jul 2024 12:25:49 +0000 (14:25 +0200)
`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-5-7d15a0671d6f@gmail.com
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
drivers/clk/meson/s4-peripherals.c

index 130c50554290bc6d52b2fc3fbac40c3b245f55a1..ba1d531fce4f427215987518c3c2a61c3c307e0f 100644 (file)
@@ -3747,7 +3747,7 @@ static struct clk_regmap *const s4_periphs_clk_regmaps[] = {
        &s4_adc_extclk_in_gate,
 };
 
-static struct regmap_config clkc_regmap_config = {
+static const struct regmap_config clkc_regmap_config = {
        .reg_bits       = 32,
        .val_bits       = 32,
        .reg_stride     = 4,