Lines Matching defs:template
644 struct snd_kcontrol_new template;
647 memset(&template, 0, sizeof(template));
648 template.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
649 template.name = ctrl->name;
650 template.info = sigmadsp_ctrl_info;
651 template.get = sigmadsp_ctrl_get;
652 template.put = sigmadsp_ctrl_put;
653 template.private_value = (unsigned long)ctrl;
654 template.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
656 template.access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
658 kcontrol = snd_ctl_new1(&template, sigmadsp);