]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ASoC: ux500: mop500: Constify static snd_soc_ops
authorRikard Falkeborn <rikard.falkeborn@gmail.com>
Wed, 29 Sep 2021 09:44:01 +0000 (11:44 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 29 Sep 2021 12:06:38 +0000 (13:06 +0100)
The struct mop500_ab8500_ops is only assigned to the ops field in the
snd_soc_dai_link struct which is a pointer to const struct snd_soc_ops.
Make it const to allow the compiler to put it in read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Link: https://lore.kernel.org/r/20210929094401.28086-1-rikard.falkeborn@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/ux500/mop500_ab8500.c
sound/soc/ux500/mop500_ab8500.h

index 2c39c7a2fd7dc408b9c84cbd77919788e2ef8879..3e654e708f78a6e4c8f460615cbb0b52bee57ddf 100644 (file)
@@ -348,7 +348,7 @@ static int mop500_ab8500_hw_free(struct snd_pcm_substream *substream)
        return 0;
 }
 
-struct snd_soc_ops mop500_ab8500_ops[] = {
+const struct snd_soc_ops mop500_ab8500_ops[] = {
        {
                .hw_params = mop500_ab8500_hw_params,
                .hw_free = mop500_ab8500_hw_free,
index 8138a4e9aaf56de7d92bdfd2d190deaf660e0f4c..087ef246d87daf8b5526bd48930cf3daa68654f5 100644 (file)
@@ -11,7 +11,7 @@
 #ifndef MOP500_AB8500_H
 #define MOP500_AB8500_H
 
-extern struct snd_soc_ops mop500_ab8500_ops[];
+extern const struct snd_soc_ops mop500_ab8500_ops[];
 
 int mop500_ab8500_machine_init(struct snd_soc_pcm_runtime *rtd);
 void mop500_ab8500_remove(struct snd_soc_card *card);