ASoC: cs42l42: constify snd_soc_dai_ops structure
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Thu, 13 Jul 2017 20:37:26 +0000 (15:37 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 17 Jul 2017 15:48:51 +0000 (16:48 +0100)
This structure is only stored in the ops field of a snd_soc_dai_driver
structure. That field is declared const, so snd_soc_dai_ops structures
that have this property can be declared as const also.

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs42l42.c

index 55caf5ff3e64d12d1ec2290a8775f89964ad5f06..a2324a0e72ee516c6dfb6069a462f588734e06bf 100644 (file)
@@ -911,7 +911,7 @@ static int cs42l42_digital_mute(struct snd_soc_dai *dai, int mute)
                        SNDRV_PCM_FMTBIT_S32_LE)
 
 
-static struct snd_soc_dai_ops cs42l42_ops = {
+static const struct snd_soc_dai_ops cs42l42_ops = {
        .hw_params      = cs42l42_pcm_hw_params,
        .set_fmt        = cs42l42_set_dai_fmt,
        .set_sysclk     = cs42l42_set_sysclk,