mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
ASoC: Fix duplicate const warnings in da7210.c
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
9db16e4c1b
commit
f403414725
1 changed files with 2 additions and 2 deletions
|
@ -240,7 +240,7 @@ static const DECLARE_TLV_DB_SCALE(adc_eq_master_gain_tlv, -1800, 600, 1);
|
|||
static const DECLARE_TLV_DB_SCALE(dac_gain_tlv, -7725, 75, 0);
|
||||
|
||||
/* ADC and DAC high pass filter f0 value */
|
||||
static const char const *da7210_hpf_cutoff_txt[] = {
|
||||
static const char * const da7210_hpf_cutoff_txt[] = {
|
||||
"Fs/8192*pi", "Fs/4096*pi", "Fs/2048*pi", "Fs/1024*pi"
|
||||
};
|
||||
|
||||
|
@ -251,7 +251,7 @@ static const struct soc_enum da7210_adc_hpf_cutoff =
|
|||
SOC_ENUM_SINGLE(DA7210_ADC_HPF, 0, 4, da7210_hpf_cutoff_txt);
|
||||
|
||||
/* ADC and DAC voice (8kHz) high pass cutoff value */
|
||||
static const char const *da7210_vf_cutoff_txt[] = {
|
||||
static const char * const da7210_vf_cutoff_txt[] = {
|
||||
"2.5Hz", "25Hz", "50Hz", "100Hz", "150Hz", "200Hz", "300Hz", "400Hz"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue