mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
ASoC: ak4641: 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: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
38dbfb59d1
commit
cbf6242281
@ -113,14 +113,14 @@ static const DECLARE_TLV_DB_SCALE(alc_tlv, -800, 50, 0);
|
||||
static const DECLARE_TLV_DB_SCALE(aux_in_tlv, -2100, 300, 0);
|
||||
|
||||
|
||||
static const struct soc_enum ak4641_mono_out_enum =
|
||||
SOC_ENUM_SINGLE(AK4641_SIG1, 6, 2, ak4641_mono_out);
|
||||
static const struct soc_enum ak4641_hp_out_enum =
|
||||
SOC_ENUM_SINGLE(AK4641_MODE2, 2, 2, ak4641_hp_out);
|
||||
static const struct soc_enum ak4641_mic_select_enum =
|
||||
SOC_ENUM_SINGLE(AK4641_MIC, 1, 2, ak4641_mic_select);
|
||||
static const struct soc_enum ak4641_mic_or_dac_enum =
|
||||
SOC_ENUM_SINGLE(AK4641_BTIF, 4, 2, ak4641_mic_or_dac);
|
||||
static SOC_ENUM_SINGLE_DECL(ak4641_mono_out_enum,
|
||||
AK4641_SIG1, 6, ak4641_mono_out);
|
||||
static SOC_ENUM_SINGLE_DECL(ak4641_hp_out_enum,
|
||||
AK4641_MODE2, 2, ak4641_hp_out);
|
||||
static SOC_ENUM_SINGLE_DECL(ak4641_mic_select_enum,
|
||||
AK4641_MIC, 1, ak4641_mic_select);
|
||||
static SOC_ENUM_SINGLE_DECL(ak4641_mic_or_dac_enum,
|
||||
AK4641_BTIF, 4, ak4641_mic_or_dac);
|
||||
|
||||
static const struct snd_kcontrol_new ak4641_snd_controls[] = {
|
||||
SOC_ENUM("Mono 1 Output", ak4641_mono_out_enum),
|
||||
|
Loading…
Reference in New Issue
Block a user