diff options
author | Rikard Falkeborn <rikard.falkeborn@gmail.com> | 2021-09-29 12:31:21 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-09-29 15:06:37 +0300 |
commit | 5100436c27aafdbc860de17447862304c5639b60 (patch) | |
tree | a97ce8628b0d7f52a6c58102ff9f82a5b0cc6f7f /sound/soc/ti/davinci-evm.c | |
parent | 3c561a090c7920624b83005a279a66cc8a7bed2b (diff) | |
download | linux-5100436c27aafdbc860de17447862304c5639b60.tar.xz |
ASoC: ti: Constify static snd_soc_ops
These are only assigned to the ops field in the snd_soc_dai_link struct
which is a pointer to const struct snd_soc_ops. Make them const to allow
the compiler to put them in read-only memory.
Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Link: https://lore.kernel.org/r/20210929093121.21253-1-rikard.falkeborn@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/ti/davinci-evm.c')
-rw-r--r-- | sound/soc/ti/davinci-evm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/ti/davinci-evm.c b/sound/soc/ti/davinci-evm.c index b043a0070d20..68d69e32681a 100644 --- a/sound/soc/ti/davinci-evm.c +++ b/sound/soc/ti/davinci-evm.c @@ -73,7 +73,7 @@ static int evm_hw_params(struct snd_pcm_substream *substream, return 0; } -static struct snd_soc_ops evm_ops = { +static const struct snd_soc_ops evm_ops = { .startup = evm_startup, .shutdown = evm_shutdown, .hw_params = evm_hw_params, |