From: Javier Carrasco Date: Wed, 3 Jul 2024 16:21:00 +0000 (+0200) Subject: ASoC: cs53l30: Constify struct regmap_config X-Git-Tag: io_uring-6.11-20240722~16^2~6^2~29 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=52f0aa5fb9437013f7f35d61426de497a8927891;p=linux-block.git ASoC: cs53l30: Constify struct regmap_config `cs53l30_regmap` is not modified and can be declared as const to move its data to a read-only section. Signed-off-by: Javier Carrasco Link: https://patch.msgid.link/20240703-sound-const-regmap_config-v1-4-2e379b0446a7@gmail.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c index 2ee13d885fdc..bcbaf28a0b2d 100644 --- a/sound/soc/codecs/cs53l30.c +++ b/sound/soc/codecs/cs53l30.c @@ -900,7 +900,7 @@ static const struct snd_soc_component_driver cs53l30_driver = { .endianness = 1, }; -static struct regmap_config cs53l30_regmap = { +static const struct regmap_config cs53l30_regmap = { .reg_bits = 8, .val_bits = 8,