diff options
author | Mark Brown <broonie@kernel.org> | 2024-10-01 14:51:23 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-10-01 14:51:23 +0100 |
commit | 0243533fe2fc6b9aa9843b5cd4c1b0088b5363eb (patch) | |
tree | fdf6fa8957e829d443b58bb378f8c090874c860e /sound/soc/stm | |
parent | 6e393cce8c431847f602b3b366547028e0cb296c (diff) | |
parent | 8adff2ff73d8271c993549b106b26f301fa003cf (diff) |
{ASoC,media}: constify snd_soc_component_driver
Merge series from Javier Carrasco <javier.carrasco.cruz@gmail.com>:
Declare `snd_soc_component_driver` as const to move their declarations
to read-only sections for the drivers that do not modify the struct
after its declaration.
Apart from a single case under media/, the affected drivers are members
of the ASoC subsystem.
Diffstat (limited to 'sound/soc/stm')
-rw-r--r-- | sound/soc/stm/stm32_adfsdm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/stm/stm32_adfsdm.c b/sound/soc/stm/stm32_adfsdm.c index 9351727dce1a..78bd817af839 100644 --- a/sound/soc/stm/stm32_adfsdm.c +++ b/sound/soc/stm/stm32_adfsdm.c @@ -309,7 +309,7 @@ static void stm32_adfsdm_cleanup(void *data) iio_channel_release_all_cb(data); } -static struct snd_soc_component_driver stm32_adfsdm_soc_platform = { +static const struct snd_soc_component_driver stm32_adfsdm_soc_platform = { .open = stm32_adfsdm_pcm_open, .close = stm32_adfsdm_pcm_close, .hw_params = stm32_adfsdm_pcm_hw_params, |