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