summaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/tegra210_sfc.c
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2021-09-22 22:54:38 +0200
committerMark Brown <broonie@kernel.org>2021-09-27 14:01:03 +0200
commit313fab4820f3b1040bc1bd27cd4c7f69572951e8 (patch)
tree1597b49bcef7172be364fe89f62ad1dd08c2de6d /sound/soc/tegra/tegra210_sfc.c
parentASoC: cs42l42: Use two thresholds and increased wait time for manual type det... (diff)
downloadlinux-313fab4820f3b1040bc1bd27cd4c7f69572951e8.tar.xz
linux-313fab4820f3b1040bc1bd27cd4c7f69572951e8.zip
ASoC: tegra: Constify static snd_soc_dai_ops structs
The only usage of these is to assign their address to the ops field in the snd_soc_dai_driver struct, which is a pointer to const. Make them const to allow the compiler to put them in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Acked-by: Sameer Pujar <spujar@nvidia.com> Link: https://lore.kernel.org/r/20210922205438.34519-1-rikard.falkeborn@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/tegra/tegra210_sfc.c')
-rw-r--r--sound/soc/tegra/tegra210_sfc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/tegra/tegra210_sfc.c b/sound/soc/tegra/tegra210_sfc.c
index 260dca6f6d25..dc477ee1b82c 100644
--- a/sound/soc/tegra/tegra210_sfc.c
+++ b/sound/soc/tegra/tegra210_sfc.c
@@ -3287,12 +3287,12 @@ static int tegra210_sfc_put_control(struct snd_kcontrol *kcontrol,
return 1;
}
-static struct snd_soc_dai_ops tegra210_sfc_in_dai_ops = {
+static const struct snd_soc_dai_ops tegra210_sfc_in_dai_ops = {
.hw_params = tegra210_sfc_in_hw_params,
.startup = tegra210_sfc_startup,
};
-static struct snd_soc_dai_ops tegra210_sfc_out_dai_ops = {
+static const struct snd_soc_dai_ops tegra210_sfc_out_dai_ops = {
.hw_params = tegra210_sfc_out_hw_params,
};