Searched refs:patch_ops (Results 1 – 16 of 16) sorted by relevance
/kernel/linux/linux-5.10/sound/pci/hda/ |
D | hda_bind.c | 54 if (codec->patch_ops.unsol_event) in hda_codec_unsol_event() 55 codec->patch_ops.unsol_event(codec, ev); in hda_codec_unsol_event() 139 if (codec->patch_ops.free) in hda_codec_driver_probe() 140 codec->patch_ops.free(codec); in hda_codec_driver_probe() 159 if (codec->patch_ops.free) in hda_codec_driver_remove() 160 codec->patch_ops.free(codec); in hda_codec_driver_remove() 170 if (!pm_runtime_suspended(dev) && codec->patch_ops.reboot_notify) in hda_codec_driver_shutdown() 171 codec->patch_ops.reboot_notify(codec); in hda_codec_driver_shutdown()
|
D | patch_cmedia.c | 46 codec->patch_ops = cmi_auto_patch_ops; in patch_cmi9880() 75 codec->patch_ops = cmi_auto_patch_ops; in patch_cmi8888()
|
D | hda_codec.c | 777 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops)); in snd_hda_codec_cleanup_for_unbind() 1112 if (codec->patch_ops.stream_pm) in snd_hda_codec_setup_stream() 1113 codec->patch_ops.stream_pm(codec, nid, true); in snd_hda_codec_setup_stream() 1181 if (codec->patch_ops.stream_pm) in really_cleanup_stream() 1182 codec->patch_ops.stream_pm(codec, nid, false); in really_cleanup_stream() 2817 if (codec->patch_ops.set_power_state) in hda_set_power_state() 2818 codec->patch_ops.set_power_state(codec, fg, in hda_set_power_state() 2901 if (codec->patch_ops.suspend) in hda_call_codec_suspend() 2902 codec->patch_ops.suspend(codec); in hda_call_codec_suspend() 2925 if (codec->patch_ops.resume) in hda_call_codec_resume() [all …]
|
D | patch_ca0110.c | 53 codec->patch_ops = ca0110_patch_ops; in patch_ca0110()
|
D | patch_cirrus.c | 594 codec->patch_ops = cs_patch_ops; in patch_cs420x() 775 codec->patch_ops = cs_patch_ops; in patch_cs4208() 1173 codec->patch_ops = cs421x_patch_ops; in patch_cs4210() 1209 codec->patch_ops = cs421x_patch_ops; in patch_cs4213()
|
D | patch_via.c | 121 codec->patch_ops = via_patch_ops; in via_new_spec() 399 codec->patch_ops.init(codec); in via_resume() 602 codec->patch_ops.build_controls = vt1708_build_controls; in patch_vt1708() 603 codec->patch_ops.build_pcms = vt1708_build_pcms; in patch_vt1708()
|
D | patch_hdmi.c | 2496 codec->patch_ops.init(codec); in generic_hdmi_resume() 2550 codec->patch_ops = generic_hdmi_patch_ops; in alloc_generic_hdmi() 2916 codec->patch_ops.unsol_event = NULL; in alloc_intel_hdmi() 2962 codec->patch_ops.set_power_state = haswell_set_power_state; in intel_hsw_common_init() 3314 codec->patch_ops = simple_hdmi_patch_ops; in patch_simple_hdmi() 3501 codec->patch_ops.init = nvhdmi_7x_init_2ch; in patch_nvhdmi_2ch() 3561 codec->patch_ops.init = nvhdmi_7x_init_8ch; in patch_nvhdmi_8ch_7x() 3562 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms; in patch_nvhdmi_8ch_7x() 3563 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls; in patch_nvhdmi_8ch_7x() 3836 codec->patch_ops.build_pcms = tegra_hdmi_build_pcms; in patch_tegra_hdmi() [all …]
|
D | patch_si3054.c | 271 codec->patch_ops = si3054_patch_ops; in patch_si3054()
|
D | patch_analog.c | 212 codec->patch_ops = ad198x_auto_patch_ops; in alloc_ad_spec() 868 codec->patch_ops.init = ad1988_auto_init; in ad1988_add_spdif_mux_ctl()
|
D | patch_conexant.c | 1022 codec->patch_ops = cx_auto_patch_ops; in patch_conexant_auto()
|
D | patch_realtek.c | 937 codec->patch_ops.init(codec); in alc_resume() 1162 codec->patch_ops = alc_patch_ops; in alc_alloc_spec() 1607 codec->patch_ops.unsol_event = alc880_unsol_event; in patch_alc880() 3913 codec->patch_ops.init(codec); in alc269_resume() 9650 codec->patch_ops.suspend = alc269_suspend; in patch_alc269() 9651 codec->patch_ops.resume = alc269_resume; in patch_alc269()
|
D | patch_ca0132.c | 8955 codec->patch_ops.init(codec); in sbz_dsp_startup_check() 9529 codec->patch_ops.free(codec); in ca0132_reboot_notify() 9851 codec->patch_ops = dbpro_patch_ops; in patch_ca0132() 9853 codec->patch_ops = ca0132_patch_ops; in patch_ca0132()
|
D | hda_generic.c | 5225 if (!codec->patch_ops.stream_pm) in snd_hda_gen_parse_auto_config() 5226 codec->patch_ops.stream_pm = snd_hda_gen_stream_pm; in snd_hda_gen_parse_auto_config() 6192 codec->patch_ops = generic_patch_ops; in snd_hda_parse_generic_codec()
|
D | patch_sigmatel.c | 4477 codec->patch_ops = stac_patch_ops; in alloc_stac_spec()
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
D | hdac_hda.c | 498 if (hcodec->patch_ops.free) in hdac_hda_codec_probe() 499 hcodec->patch_ops.free(hcodec); in hdac_hda_codec_probe() 526 if (codec->patch_ops.free) in hdac_hda_codec_remove() 527 codec->patch_ops.free(codec); in hdac_hda_codec_remove()
|
/kernel/linux/linux-5.10/include/sound/ |
D | hda_codec.h | 187 struct hda_codec_ops patch_ops; member 478 if (codec->patch_ops.check_power_status) in hda_call_check_power_status() 479 return codec->patch_ops.check_power_status(codec, nid); in hda_call_check_power_status()
|