Lines Matching refs:kctl

352 static int special_clk_ctl_info(struct snd_kcontrol *kctl,  in special_clk_ctl_info()  argument
358 static int special_clk_ctl_get(struct snd_kcontrol *kctl, in special_clk_ctl_get() argument
361 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_clk_ctl_get()
366 static int special_clk_ctl_put(struct snd_kcontrol *kctl, in special_clk_ctl_put() argument
369 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_clk_ctl_put()
400 static int special_sync_ctl_info(struct snd_kcontrol *kctl, in special_sync_ctl_info() argument
410 static int special_sync_ctl_get(struct snd_kcontrol *kctl, in special_sync_ctl_get() argument
413 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_sync_ctl_get()
435 static int special_dig_in_iface_ctl_info(struct snd_kcontrol *kctl, in special_dig_in_iface_ctl_info() argument
442 static int special_dig_in_iface_ctl_get(struct snd_kcontrol *kctl, in special_dig_in_iface_ctl_get() argument
445 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_dig_in_iface_ctl_get()
472 static int special_dig_in_iface_ctl_set(struct snd_kcontrol *kctl, in special_dig_in_iface_ctl_set() argument
475 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_dig_in_iface_ctl_set()
528 static int special_dig_out_iface_ctl_info(struct snd_kcontrol *kctl, in special_dig_out_iface_ctl_info() argument
535 static int special_dig_out_iface_ctl_get(struct snd_kcontrol *kctl, in special_dig_out_iface_ctl_get() argument
538 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_dig_out_iface_ctl_get()
545 static int special_dig_out_iface_ctl_set(struct snd_kcontrol *kctl, in special_dig_out_iface_ctl_set() argument
548 struct snd_bebob *bebob = snd_kcontrol_chip(kctl); in special_dig_out_iface_ctl_set()
582 struct snd_kcontrol *kctl; in add_special_controls() local
586 kctl = snd_ctl_new1(&special_clk_ctl, bebob); in add_special_controls()
587 err = snd_ctl_add(bebob->card, kctl); in add_special_controls()
591 kctl = snd_ctl_new1(&special_sync_ctl, bebob); in add_special_controls()
592 err = snd_ctl_add(bebob->card, kctl); in add_special_controls()
595 params->ctl_id_sync = &kctl->id; in add_special_controls()
597 kctl = snd_ctl_new1(&special_dig_in_iface_ctl, bebob); in add_special_controls()
598 err = snd_ctl_add(bebob->card, kctl); in add_special_controls()
602 kctl = snd_ctl_new1(&special_dig_out_iface_ctl, bebob); in add_special_controls()
603 err = snd_ctl_add(bebob->card, kctl); in add_special_controls()