diff options
author | 2024-07-03 18:21:00 +0200 | |
---|---|---|
committer | 2024-07-03 17:35:24 +0100 | |
commit | 52f0aa5fb9437013f7f35d61426de497a8927891 (patch) | |
tree | 5d27a335488cf809d94c7de3169fc97b5e633825 | |
parent | ASoC: cs35l36: Constify struct regmap_config (diff) | |
download | wireguard-linux-52f0aa5fb9437013f7f35d61426de497a8927891.tar.xz wireguard-linux-52f0aa5fb9437013f7f35d61426de497a8927891.zip |
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 <javier.carrasco.cruz@gmail.com>
Link: https://patch.msgid.link/20240703-sound-const-regmap_config-v1-4-2e379b0446a7@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs53l30.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |