Commit 8edd2d12 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: msnd: Use snd_ctl_enum_info()

... and reduce the open codes.  Also add missing const to the text array.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 4e28350a
...@@ -55,20 +55,13 @@ ...@@ -55,20 +55,13 @@
static int snd_msndmix_info_mux(struct snd_kcontrol *kcontrol, static int snd_msndmix_info_mux(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_info *uinfo) struct snd_ctl_elem_info *uinfo)
{ {
static char *texts[3] = { static const char * const texts[3] = {
"Analog", "MASS", "SPDIF", "Analog", "MASS", "SPDIF",
}; };
struct snd_msnd *chip = snd_kcontrol_chip(kcontrol); struct snd_msnd *chip = snd_kcontrol_chip(kcontrol);
unsigned items = test_bit(F_HAVEDIGITAL, &chip->flags) ? 3 : 2; unsigned items = test_bit(F_HAVEDIGITAL, &chip->flags) ? 3 : 2;
uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; return snd_ctl_enum_info(uinfo, 1, items, texts);
uinfo->count = 1;
uinfo->value.enumerated.items = items;
if (uinfo->value.enumerated.item >= items)
uinfo->value.enumerated.item = items - 1;
strcpy(uinfo->value.enumerated.name,
texts[uinfo->value.enumerated.item]);
return 0;
} }
static int snd_msndmix_get_mux(struct snd_kcontrol *kcontrol, static int snd_msndmix_get_mux(struct snd_kcontrol *kcontrol,
......
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