Lines Matching refs:mix_index
991 int mix_index = 0; in tasdevice_create_control() local
1008 prof_ctrls[mix_index].name = name; in tasdevice_create_control()
1009 prof_ctrls[mix_index].iface = SNDRV_CTL_ELEM_IFACE_MIXER; in tasdevice_create_control()
1010 prof_ctrls[mix_index].info = tasdevice_info_profile; in tasdevice_create_control()
1011 prof_ctrls[mix_index].get = tasdevice_get_profile_id; in tasdevice_create_control()
1012 prof_ctrls[mix_index].put = tasdevice_set_profile_id; in tasdevice_create_control()
1013 mix_index++; in tasdevice_create_control()
1016 prof_ctrls, nr_controls < mix_index ? nr_controls : mix_index); in tasdevice_create_control()
1117 int mix_index = 0; in tasdevice_dsp_create_ctrls() local
1137 dsp_ctrls[mix_index].name = prog_name; in tasdevice_dsp_create_ctrls()
1138 dsp_ctrls[mix_index].iface = SNDRV_CTL_ELEM_IFACE_MIXER; in tasdevice_dsp_create_ctrls()
1139 dsp_ctrls[mix_index].info = tasdevice_info_programs; in tasdevice_dsp_create_ctrls()
1140 dsp_ctrls[mix_index].get = tasdevice_program_get; in tasdevice_dsp_create_ctrls()
1141 dsp_ctrls[mix_index].put = tasdevice_program_put; in tasdevice_dsp_create_ctrls()
1142 mix_index++; in tasdevice_dsp_create_ctrls()
1150 dsp_ctrls[mix_index].name = conf_name; in tasdevice_dsp_create_ctrls()
1151 dsp_ctrls[mix_index].iface = SNDRV_CTL_ELEM_IFACE_MIXER; in tasdevice_dsp_create_ctrls()
1152 dsp_ctrls[mix_index].info = tasdevice_info_configurations; in tasdevice_dsp_create_ctrls()
1153 dsp_ctrls[mix_index].get = tasdevice_configuration_get; in tasdevice_dsp_create_ctrls()
1154 dsp_ctrls[mix_index].put = tasdevice_configuration_put; in tasdevice_dsp_create_ctrls()
1155 mix_index++; in tasdevice_dsp_create_ctrls()
1163 dsp_ctrls[mix_index].name = active_dev_num; in tasdevice_dsp_create_ctrls()
1164 dsp_ctrls[mix_index].iface = SNDRV_CTL_ELEM_IFACE_MIXER; in tasdevice_dsp_create_ctrls()
1165 dsp_ctrls[mix_index].info = tasdevice_info_active_num; in tasdevice_dsp_create_ctrls()
1166 dsp_ctrls[mix_index].get = tasdevice_active_num_get; in tasdevice_dsp_create_ctrls()
1167 dsp_ctrls[mix_index].put = tasdevice_active_num_put; in tasdevice_dsp_create_ctrls()
1168 mix_index++; in tasdevice_dsp_create_ctrls()
1175 dsp_ctrls[mix_index].name = chip_id; in tasdevice_dsp_create_ctrls()
1176 dsp_ctrls[mix_index].iface = SNDRV_CTL_ELEM_IFACE_MIXER; in tasdevice_dsp_create_ctrls()
1177 dsp_ctrls[mix_index].info = tasdevice_info_chip_id; in tasdevice_dsp_create_ctrls()
1178 dsp_ctrls[mix_index].get = tasdevice_get_chip_id; in tasdevice_dsp_create_ctrls()
1179 mix_index++; in tasdevice_dsp_create_ctrls()
1182 nr_controls < mix_index ? nr_controls : mix_index); in tasdevice_dsp_create_ctrls()