]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: msm8916-wcd-analog: constify snd_soc_dai_ops structure
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Thu, 13 Jul 2017 20:37:48 +0000 (15:37 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 17 Jul 2017 15:51:55 +0000 (16:51 +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/msm8916-wcd-analog.c

index a78802920c3cc098af2526a4ba335dba0df5a59f..aec1e1626993bcc10c044ab71847b0d17c000ca7 100644 (file)
@@ -753,7 +753,7 @@ static void pm8916_wcd_analog_shutdown(struct snd_pcm_substream *substream,
                            RST_CTL_DIG_SW_RST_N_MASK, 0);
 }
 
-static struct snd_soc_dai_ops pm8916_wcd_analog_dai_ops = {
+static const struct snd_soc_dai_ops pm8916_wcd_analog_dai_ops = {
        .startup = pm8916_wcd_analog_startup,
        .shutdown = pm8916_wcd_analog_shutdown,
 };