Lines Matching refs:template
645 struct snd_kcontrol_new template; in sigmadsp_alloc_control() local
648 memset(&template, 0, sizeof(template)); in sigmadsp_alloc_control()
649 template.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in sigmadsp_alloc_control()
650 template.name = ctrl->name; in sigmadsp_alloc_control()
651 template.info = sigmadsp_ctrl_info; in sigmadsp_alloc_control()
652 template.get = sigmadsp_ctrl_get; in sigmadsp_alloc_control()
653 template.put = sigmadsp_ctrl_put; in sigmadsp_alloc_control()
654 template.private_value = (unsigned long)ctrl; in sigmadsp_alloc_control()
655 template.access = SNDRV_CTL_ELEM_ACCESS_READWRITE; in sigmadsp_alloc_control()
657 template.access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE; in sigmadsp_alloc_control()
659 kcontrol = snd_ctl_new1(&template, sigmadsp); in sigmadsp_alloc_control()