diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2011-11-23 14:11:21 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-23 14:11:50 +0100 |
commit | 890754a878c887de50bc0c9f9041b8b73bd09937 (patch) | |
tree | bdc532f8e10ea9346ea62eea00e97e749d20f163 /sound/soc/codecs/adau1373.c | |
parent | Merge branch 'for-3.2' into for-3.3 (diff) | |
download | linux-890754a878c887de50bc0c9f9041b8b73bd09937.tar.xz linux-890754a878c887de50bc0c9f9041b8b73bd09937.zip |
ASoC: Cleanup duplicated const
Commit 85e7652("ASoC: Constify snd_soc_dai_ops structs") accidentally
introduced a few duplicated consts. This patch cleans it up.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/adau1373.c')
-rw-r--r-- | sound/soc/codecs/adau1373.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/adau1373.c b/sound/soc/codecs/adau1373.c index 2e040af9ad57..45c63028b40d 100644 --- a/sound/soc/codecs/adau1373.c +++ b/sound/soc/codecs/adau1373.c @@ -1042,7 +1042,7 @@ static int adau1373_set_dai_sysclk(struct snd_soc_dai *dai, return 0; } -static const const struct snd_soc_dai_ops adau1373_dai_ops = { +static const struct snd_soc_dai_ops adau1373_dai_ops = { .hw_params = adau1373_hw_params, .set_sysclk = adau1373_set_dai_sysclk, .set_fmt = adau1373_set_dai_fmt, |