Commit 26d04ca8 authored by Takashi Iwai's avatar Takashi Iwai Committed by Mark Brown

ASoC: lm49453: 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 avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 38dbfb59
...@@ -213,14 +213,12 @@ static const char *lm49453_adcl_mux_text[] = { "MIC1", "Aux_L" }; ...@@ -213,14 +213,12 @@ static const char *lm49453_adcl_mux_text[] = { "MIC1", "Aux_L" };
static const char *lm49453_adcr_mux_text[] = { "MIC2", "Aux_R" }; static const char *lm49453_adcr_mux_text[] = { "MIC2", "Aux_R" };
static const struct soc_enum lm49453_adcl_enum = static SOC_ENUM_SINGLE_DECL(lm49453_adcl_enum,
SOC_ENUM_SINGLE(LM49453_P0_ANALOG_MIXER_ADC_REG, 0, LM49453_P0_ANALOG_MIXER_ADC_REG, 0,
ARRAY_SIZE(lm49453_adcl_mux_text),
lm49453_adcl_mux_text); lm49453_adcl_mux_text);
static const struct soc_enum lm49453_adcr_enum = static SOC_ENUM_SINGLE_DECL(lm49453_adcr_enum,
SOC_ENUM_SINGLE(LM49453_P0_ANALOG_MIXER_ADC_REG, 1, LM49453_P0_ANALOG_MIXER_ADC_REG, 1,
ARRAY_SIZE(lm49453_adcr_mux_text),
lm49453_adcr_mux_text); lm49453_adcr_mux_text);
static const struct snd_kcontrol_new lm49453_adcl_mux_control = static const struct snd_kcontrol_new lm49453_adcl_mux_control =
......
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