diff options
author | Mark Brown <broonie@linaro.org> | 2014-03-06 22:43:04 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-09 03:38:23 -0400 |
commit | e97db9abf99280e6ff7d9b339dd2ca4846ce2eea (patch) | |
tree | b0156c328177a249f19651a76d0cfaeca83690fb | |
parent | 22066226b50e40591d67aef1d5525abce7515df2 (diff) |
ASoC: pcm512x: Fix duplicate const warning
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/codecs/pcm512x.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c index 0c907051cc7b..4b4c0c7bb918 100644 --- a/sound/soc/codecs/pcm512x.c +++ b/sound/soc/codecs/pcm512x.c | |||
@@ -201,10 +201,10 @@ static const unsigned int pcm512x_dsp_program_values[] = { | |||
201 | 7, | 201 | 7, |
202 | }; | 202 | }; |
203 | 203 | ||
204 | static const SOC_VALUE_ENUM_SINGLE_DECL(pcm512x_dsp_program, | 204 | static SOC_VALUE_ENUM_SINGLE_DECL(pcm512x_dsp_program, |
205 | PCM512x_DSP_PROGRAM, 0, 0x1f, | 205 | PCM512x_DSP_PROGRAM, 0, 0x1f, |
206 | pcm512x_dsp_program_texts, | 206 | pcm512x_dsp_program_texts, |
207 | pcm512x_dsp_program_values); | 207 | pcm512x_dsp_program_values); |
208 | 208 | ||
209 | static const char * const pcm512x_clk_missing_text[] = { | 209 | static const char * const pcm512x_clk_missing_text[] = { |
210 | "1s", "2s", "3s", "4s", "5s", "6s", "7s", "8s" | 210 | "1s", "2s", "3s", "4s", "5s", "6s", "7s", "8s" |