Commit 5cca5a91 authored by Takashi Iwai's avatar Takashi Iwai Committed by Mark Brown

ASoC: wm8996: Use SOC_ENUM_SINGLE_DECL()

Just replace with the helper macro.  No functional change at all.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Acked-by: default avatarLiam Girdwood <liam.r.girdwood@linux.intel.com>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Acked-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 38dbfb59
...@@ -311,28 +311,28 @@ static const char *sidetone_hpf_text[] = { ...@@ -311,28 +311,28 @@ static const char *sidetone_hpf_text[] = {
"2.9kHz", "1.5kHz", "735Hz", "403Hz", "196Hz", "98Hz", "49Hz" "2.9kHz", "1.5kHz", "735Hz", "403Hz", "196Hz", "98Hz", "49Hz"
}; };
static const struct soc_enum sidetone_hpf = static SOC_ENUM_SINGLE_DECL(sidetone_hpf,
SOC_ENUM_SINGLE(WM8996_SIDETONE, 7, 7, sidetone_hpf_text); WM8996_SIDETONE, 7, sidetone_hpf_text);
static const char *hpf_mode_text[] = { static const char *hpf_mode_text[] = {
"HiFi", "Custom", "Voice" "HiFi", "Custom", "Voice"
}; };
static const struct soc_enum dsp1tx_hpf_mode = static SOC_ENUM_SINGLE_DECL(dsp1tx_hpf_mode,
SOC_ENUM_SINGLE(WM8996_DSP1_TX_FILTERS, 3, 3, hpf_mode_text); WM8996_DSP1_TX_FILTERS, 3, hpf_mode_text);
static const struct soc_enum dsp2tx_hpf_mode = static SOC_ENUM_SINGLE_DECL(dsp2tx_hpf_mode,
SOC_ENUM_SINGLE(WM8996_DSP2_TX_FILTERS, 3, 3, hpf_mode_text); WM8996_DSP2_TX_FILTERS, 3, hpf_mode_text);
static const char *hpf_cutoff_text[] = { static const char *hpf_cutoff_text[] = {
"50Hz", "75Hz", "100Hz", "150Hz", "200Hz", "300Hz", "400Hz" "50Hz", "75Hz", "100Hz", "150Hz", "200Hz", "300Hz", "400Hz"
}; };
static const struct soc_enum dsp1tx_hpf_cutoff = static SOC_ENUM_SINGLE_DECL(dsp1tx_hpf_cutoff,
SOC_ENUM_SINGLE(WM8996_DSP1_TX_FILTERS, 0, 7, hpf_cutoff_text); WM8996_DSP1_TX_FILTERS, 0, hpf_cutoff_text);
static const struct soc_enum dsp2tx_hpf_cutoff = static SOC_ENUM_SINGLE_DECL(dsp2tx_hpf_cutoff,
SOC_ENUM_SINGLE(WM8996_DSP2_TX_FILTERS, 0, 7, hpf_cutoff_text); WM8996_DSP2_TX_FILTERS, 0, hpf_cutoff_text);
static void wm8996_set_retune_mobile(struct snd_soc_codec *codec, int block) static void wm8996_set_retune_mobile(struct snd_soc_codec *codec, int block)
{ {
...@@ -780,14 +780,14 @@ static const char *sidetone_text[] = { ...@@ -780,14 +780,14 @@ static const char *sidetone_text[] = {
"IN1", "IN2", "IN1", "IN2",
}; };
static const struct soc_enum left_sidetone_enum = static SOC_ENUM_SINGLE_DECL(left_sidetone_enum,
SOC_ENUM_SINGLE(WM8996_SIDETONE, 0, 2, sidetone_text); WM8996_SIDETONE, 0, sidetone_text);
static const struct snd_kcontrol_new left_sidetone = static const struct snd_kcontrol_new left_sidetone =
SOC_DAPM_ENUM("Left Sidetone", left_sidetone_enum); SOC_DAPM_ENUM("Left Sidetone", left_sidetone_enum);
static const struct soc_enum right_sidetone_enum = static SOC_ENUM_SINGLE_DECL(right_sidetone_enum,
SOC_ENUM_SINGLE(WM8996_SIDETONE, 1, 2, sidetone_text); WM8996_SIDETONE, 1, sidetone_text);
static const struct snd_kcontrol_new right_sidetone = static const struct snd_kcontrol_new right_sidetone =
SOC_DAPM_ENUM("Right Sidetone", right_sidetone_enum); SOC_DAPM_ENUM("Right Sidetone", right_sidetone_enum);
...@@ -796,14 +796,14 @@ static const char *spk_text[] = { ...@@ -796,14 +796,14 @@ static const char *spk_text[] = {
"DAC1L", "DAC1R", "DAC2L", "DAC2R" "DAC1L", "DAC1R", "DAC2L", "DAC2R"
}; };
static const struct soc_enum spkl_enum = static SOC_ENUM_SINGLE_DECL(spkl_enum,
SOC_ENUM_SINGLE(WM8996_LEFT_PDM_SPEAKER, 0, 4, spk_text); WM8996_LEFT_PDM_SPEAKER, 0, spk_text);
static const struct snd_kcontrol_new spkl_mux = static const struct snd_kcontrol_new spkl_mux =
SOC_DAPM_ENUM("SPKL", spkl_enum); SOC_DAPM_ENUM("SPKL", spkl_enum);
static const struct soc_enum spkr_enum = static SOC_ENUM_SINGLE_DECL(spkr_enum,
SOC_ENUM_SINGLE(WM8996_RIGHT_PDM_SPEAKER, 0, 4, spk_text); WM8996_RIGHT_PDM_SPEAKER, 0, spk_text);
static const struct snd_kcontrol_new spkr_mux = static const struct snd_kcontrol_new spkr_mux =
SOC_DAPM_ENUM("SPKR", spkr_enum); SOC_DAPM_ENUM("SPKR", spkr_enum);
...@@ -812,8 +812,8 @@ static const char *dsp1rx_text[] = { ...@@ -812,8 +812,8 @@ static const char *dsp1rx_text[] = {
"AIF1", "AIF2" "AIF1", "AIF2"
}; };
static const struct soc_enum dsp1rx_enum = static SOC_ENUM_SINGLE_DECL(dsp1rx_enum,
SOC_ENUM_SINGLE(WM8996_POWER_MANAGEMENT_8, 0, 2, dsp1rx_text); WM8996_POWER_MANAGEMENT_8, 0, dsp1rx_text);
static const struct snd_kcontrol_new dsp1rx = static const struct snd_kcontrol_new dsp1rx =
SOC_DAPM_ENUM("DSP1RX", dsp1rx_enum); SOC_DAPM_ENUM("DSP1RX", dsp1rx_enum);
...@@ -822,8 +822,8 @@ static const char *dsp2rx_text[] = { ...@@ -822,8 +822,8 @@ static const char *dsp2rx_text[] = {
"AIF2", "AIF1" "AIF2", "AIF1"
}; };
static const struct soc_enum dsp2rx_enum = static SOC_ENUM_SINGLE_DECL(dsp2rx_enum,
SOC_ENUM_SINGLE(WM8996_POWER_MANAGEMENT_8, 4, 2, dsp2rx_text); WM8996_POWER_MANAGEMENT_8, 4, dsp2rx_text);
static const struct snd_kcontrol_new dsp2rx = static const struct snd_kcontrol_new dsp2rx =
SOC_DAPM_ENUM("DSP2RX", dsp2rx_enum); SOC_DAPM_ENUM("DSP2RX", dsp2rx_enum);
...@@ -832,8 +832,8 @@ static const char *aif2tx_text[] = { ...@@ -832,8 +832,8 @@ static const char *aif2tx_text[] = {
"DSP2", "DSP1", "AIF1" "DSP2", "DSP1", "AIF1"
}; };
static const struct soc_enum aif2tx_enum = static SOC_ENUM_SINGLE_DECL(aif2tx_enum,
SOC_ENUM_SINGLE(WM8996_POWER_MANAGEMENT_8, 6, 3, aif2tx_text); WM8996_POWER_MANAGEMENT_8, 6, aif2tx_text);
static const struct snd_kcontrol_new aif2tx = static const struct snd_kcontrol_new aif2tx =
SOC_DAPM_ENUM("AIF2TX", aif2tx_enum); SOC_DAPM_ENUM("AIF2TX", aif2tx_enum);
...@@ -842,14 +842,14 @@ static const char *inmux_text[] = { ...@@ -842,14 +842,14 @@ static const char *inmux_text[] = {
"ADC", "DMIC1", "DMIC2" "ADC", "DMIC1", "DMIC2"
}; };
static const struct soc_enum in1_enum = static SOC_ENUM_SINGLE_DECL(in1_enum,
SOC_ENUM_SINGLE(WM8996_POWER_MANAGEMENT_7, 0, 3, inmux_text); WM8996_POWER_MANAGEMENT_7, 0, inmux_text);
static const struct snd_kcontrol_new in1_mux = static const struct snd_kcontrol_new in1_mux =
SOC_DAPM_ENUM("IN1 Mux", in1_enum); SOC_DAPM_ENUM("IN1 Mux", in1_enum);
static const struct soc_enum in2_enum = static SOC_ENUM_SINGLE_DECL(in2_enum,
SOC_ENUM_SINGLE(WM8996_POWER_MANAGEMENT_7, 4, 3, inmux_text); WM8996_POWER_MANAGEMENT_7, 4, inmux_text);
static const struct snd_kcontrol_new in2_mux = static const struct snd_kcontrol_new in2_mux =
SOC_DAPM_ENUM("IN2 Mux", in2_enum); SOC_DAPM_ENUM("IN2 Mux", in2_enum);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment