From: Clemens Ladisch Date: Mon, 10 Jan 2011 15:27:26 +0000 (+0100) Subject: ALSA: bt87x: use enum control info helper X-Git-Tag: accepted/tizen/common/20141203.182822~8819^2~7^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd1224aa3ebfdef6cddcfb68ddcd0e682eaf9f84;p=platform%2Fkernel%2Flinux-arm64.git ALSA: bt87x: use enum control info helper Simplify the info callback by using the snd_ctl_enum_info() helper function. Signed-off-by: Clemens Ladisch Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c index 37e1b5d..2958a05 100644 --- a/sound/pci/bt87x.c +++ b/sound/pci/bt87x.c @@ -637,15 +637,9 @@ static struct snd_kcontrol_new snd_bt87x_capture_boost = { static int snd_bt87x_capture_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *info) { - static char *texts[3] = {"TV Tuner", "FM", "Mic/Line"}; + static const char *const texts[3] = {"TV Tuner", "FM", "Mic/Line"}; - info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; - info->count = 1; - info->value.enumerated.items = 3; - if (info->value.enumerated.item > 2) - info->value.enumerated.item = 2; - strcpy(info->value.enumerated.name, texts[info->value.enumerated.item]); - return 0; + return snd_ctl_enum_info(info, 1, 3, texts); } static int snd_bt87x_capture_source_get(struct snd_kcontrol *kcontrol,