Lines Matching defs:cont
307 struct snd_kcontrol_new cont;
341 memset(&cont, 0, sizeof(cont));
342 cont.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
344 cont.private_value = i;
345 cont.name = psc724_cont[i].name;
346 cont.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
347 cont.info = snd_ctl_boolean_mono_info;
348 cont.get = psc724_ctl_get;
349 cont.put = psc724_ctl_put;
350 ctl = snd_ctl_new1(&cont, ice);