Skip to content
Snippets Groups Projects
Commit 3c6a73cc authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: parisc: 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 2a2085ab
No related branches found
No related tags found
No related merge requests found
...@@ -776,15 +776,9 @@ static int ...@@ -776,15 +776,9 @@ static int
snd_harmony_captureroute_info(struct snd_kcontrol *kc, snd_harmony_captureroute_info(struct snd_kcontrol *kc,
struct snd_ctl_elem_info *uinfo) struct snd_ctl_elem_info *uinfo)
{ {
static char *texts[2] = { "Line", "Mic" }; static const char * const texts[2] = { "Line", "Mic" };
uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
uinfo->count = 1; return snd_ctl_enum_info(uinfo, 1, 2, texts);
uinfo->value.enumerated.items = 2;
if (uinfo->value.enumerated.item > 1)
uinfo->value.enumerated.item = 1;
strcpy(uinfo->value.enumerated.name,
texts[uinfo->value.enumerated.item]);
return 0;
} }
static int static int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment