diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-09 18:15:26 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-09 19:13:44 -0500 |
commit | f4034147259f72cb7c4870a4188bd8beb592f87d (patch) | |
tree | 8b6a51ae1da3b9045de9a392489b4daa46bb35e4 /sound/soc/codecs/da7210.c | |
parent | 9db16e4c1b21abe5bfc15b6a14824acc0ce0d594 (diff) |
ASoC: Fix duplicate const warnings in da7210.c
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/da7210.c')
-rw-r--r-- | sound/soc/codecs/da7210.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c index b545b7d37222..8b5848a6374c 100644 --- a/sound/soc/codecs/da7210.c +++ b/sound/soc/codecs/da7210.c | |||
@@ -240,7 +240,7 @@ static const DECLARE_TLV_DB_SCALE(adc_eq_master_gain_tlv, -1800, 600, 1); | |||
240 | static const DECLARE_TLV_DB_SCALE(dac_gain_tlv, -7725, 75, 0); | 240 | static const DECLARE_TLV_DB_SCALE(dac_gain_tlv, -7725, 75, 0); |
241 | 241 | ||
242 | /* ADC and DAC high pass filter f0 value */ | 242 | /* ADC and DAC high pass filter f0 value */ |
243 | static const char const *da7210_hpf_cutoff_txt[] = { | 243 | static const char * const da7210_hpf_cutoff_txt[] = { |
244 | "Fs/8192*pi", "Fs/4096*pi", "Fs/2048*pi", "Fs/1024*pi" | 244 | "Fs/8192*pi", "Fs/4096*pi", "Fs/2048*pi", "Fs/1024*pi" |
245 | }; | 245 | }; |
246 | 246 | ||
@@ -251,7 +251,7 @@ static const struct soc_enum da7210_adc_hpf_cutoff = | |||
251 | SOC_ENUM_SINGLE(DA7210_ADC_HPF, 0, 4, da7210_hpf_cutoff_txt); | 251 | SOC_ENUM_SINGLE(DA7210_ADC_HPF, 0, 4, da7210_hpf_cutoff_txt); |
252 | 252 | ||
253 | /* ADC and DAC voice (8kHz) high pass cutoff value */ | 253 | /* ADC and DAC voice (8kHz) high pass cutoff value */ |
254 | static const char const *da7210_vf_cutoff_txt[] = { | 254 | static const char * const da7210_vf_cutoff_txt[] = { |
255 | "2.5Hz", "25Hz", "50Hz", "100Hz", "150Hz", "200Hz", "300Hz", "400Hz" | 255 | "2.5Hz", "25Hz", "50Hz", "100Hz", "150Hz", "200Hz", "300Hz", "400Hz" |
256 | }; | 256 | }; |
257 | 257 | ||