Lines Matching defs:template
632 struct snd_kcontrol_new template;
635 memset(&template, 0, sizeof(template));
636 template.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
637 template.name = ctrl->name;
638 template.info = sigmadsp_ctrl_info;
639 template.get = sigmadsp_ctrl_get;
640 template.put = sigmadsp_ctrl_put;
641 template.private_value = (unsigned long)ctrl;
642 template.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
644 template.access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
646 kcontrol = snd_ctl_new1(&template, sigmadsp);