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