mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
ASoC: wm8995: Use SOC_ENUM_SINGLE_DECL()
Just replace with the helper macro. No functional change at all. Signed-off-by: Takashi Iwai <tiwai@suse.de> Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Acked-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
8955f28dba
commit
15b49e73d3
@ -781,14 +781,12 @@ static const char *sidetone_text[] = {
|
||||
"ADC/DMIC1", "DMIC2",
|
||||
};
|
||||
|
||||
static const struct soc_enum sidetone1_enum =
|
||||
SOC_ENUM_SINGLE(WM8995_SIDETONE, 0, 2, sidetone_text);
|
||||
static SOC_ENUM_SINGLE_DECL(sidetone1_enum, WM8995_SIDETONE, 0, sidetone_text);
|
||||
|
||||
static const struct snd_kcontrol_new sidetone1_mux =
|
||||
SOC_DAPM_ENUM("Left Sidetone Mux", sidetone1_enum);
|
||||
|
||||
static const struct soc_enum sidetone2_enum =
|
||||
SOC_ENUM_SINGLE(WM8995_SIDETONE, 1, 2, sidetone_text);
|
||||
static SOC_ENUM_SINGLE_DECL(sidetone2_enum, WM8995_SIDETONE, 1, sidetone_text);
|
||||
|
||||
static const struct snd_kcontrol_new sidetone2_mux =
|
||||
SOC_DAPM_ENUM("Right Sidetone Mux", sidetone2_enum);
|
||||
@ -884,8 +882,7 @@ static const char *adc_mux_text[] = {
|
||||
"DMIC",
|
||||
};
|
||||
|
||||
static const struct soc_enum adc_enum =
|
||||
SOC_ENUM_SINGLE(0, 0, 2, adc_mux_text);
|
||||
static const SOC_ENUM_SINGLE_DECL(adc_enum, 0, 0, adc_mux_text);
|
||||
|
||||
static const struct snd_kcontrol_new adcl_mux =
|
||||
SOC_DAPM_ENUM_VIRT("ADCL Mux", adc_enum);
|
||||
|
Loading…
Reference in New Issue
Block a user