diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2011-11-23 08:11:21 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-23 08:11:50 -0500 |
commit | 890754a878c887de50bc0c9f9041b8b73bd09937 (patch) | |
tree | bdc532f8e10ea9346ea62eea00e97e749d20f163 /sound/soc/au1x | |
parent | 554671230b9d2f79026897226546f399de4d4a50 (diff) |
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/au1x')
-rw-r--r-- | sound/soc/au1x/i2sc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/au1x/i2sc.c b/sound/soc/au1x/i2sc.c index 2d5f755ac99c..6bcf48f5884c 100644 --- a/sound/soc/au1x/i2sc.c +++ b/sound/soc/au1x/i2sc.c | |||
@@ -201,7 +201,7 @@ static int au1xi2s_startup(struct snd_pcm_substream *substream, | |||
201 | return 0; | 201 | return 0; |
202 | } | 202 | } |
203 | 203 | ||
204 | static const const struct snd_soc_dai_ops au1xi2s_dai_ops = { | 204 | static const struct snd_soc_dai_ops au1xi2s_dai_ops = { |
205 | .startup = au1xi2s_startup, | 205 | .startup = au1xi2s_startup, |
206 | .trigger = au1xi2s_trigger, | 206 | .trigger = au1xi2s_trigger, |
207 | .hw_params = au1xi2s_hw_params, | 207 | .hw_params = au1xi2s_hw_params, |