diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-08-10 15:33:10 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-11 07:00:27 -0400 |
commit | 9a953e6f27fd280a2af5719b77394fbb228c5b46 (patch) | |
tree | d134e15592e342b245c1b58c1fc3261f825a9334 /include/sound/soc.h | |
parent | c77f872e663e3f6ea18f774bf4399884884b4b22 (diff) |
ASoC: Use snd_soc_info_enum_double() for SOC_ENUM_EXT controls
snd_soc_info_enum_ext() and snd_soc_info_enum_double() are almost identical. The
only difference is that snd_soc_info_enum_double() is also able to handle stereo
controls. Using snd_soc_info_enum double() instead of snd_soc_info_enum_ext()
for the SOC_ENUM_EXT control's info callback allows us to remove
snd_soc_info_enum_ext().
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/sound/soc.h')
-rw-r--r-- | include/sound/soc.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index 724a42af40fa..6f86a4187f58 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
@@ -234,7 +234,7 @@ | |||
234 | .private_value = xdata } | 234 | .private_value = xdata } |
235 | #define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \ | 235 | #define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \ |
236 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | 236 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
237 | .info = snd_soc_info_enum_ext, \ | 237 | .info = snd_soc_info_enum_double, \ |
238 | .get = xhandler_get, .put = xhandler_put, \ | 238 | .get = xhandler_get, .put = xhandler_put, \ |
239 | .private_value = (unsigned long)&xenum } | 239 | .private_value = (unsigned long)&xenum } |
240 | 240 | ||
@@ -485,8 +485,6 @@ int snd_soc_add_dai_controls(struct snd_soc_dai *dai, | |||
485 | const struct snd_kcontrol_new *controls, int num_controls); | 485 | const struct snd_kcontrol_new *controls, int num_controls); |
486 | int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol, | 486 | int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol, |
487 | struct snd_ctl_elem_info *uinfo); | 487 | struct snd_ctl_elem_info *uinfo); |
488 | int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol, | ||
489 | struct snd_ctl_elem_info *uinfo); | ||
490 | int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol, | 488 | int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol, |
491 | struct snd_ctl_elem_value *ucontrol); | 489 | struct snd_ctl_elem_value *ucontrol); |
492 | int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol, | 490 | int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol, |