Lines Matching refs:acomp
38 struct i915_audio_component *acomp = &hda->audio_component; in hda_display_power() local
40 if (!acomp->ops) in hda_display_power()
46 acomp->ops->get_power(acomp->dev); in hda_display_power()
48 acomp->ops->put_power(acomp->dev); in hda_display_power()
57 struct i915_audio_component *acomp = &hda->audio_component; in haswell_set_bclk() local
65 if (!acomp->ops) in haswell_set_bclk()
68 cdclk_freq = acomp->ops->get_cdclk_freq(acomp->dev); in haswell_set_bclk()
101 struct i915_audio_component *acomp = &hda->audio_component; in hda_component_master_bind() local
104 ret = component_bind_all(dev, acomp); in hda_component_master_bind()
108 if (WARN_ON(!(acomp->dev && acomp->ops && acomp->ops->get_power && in hda_component_master_bind()
109 acomp->ops->put_power && acomp->ops->get_cdclk_freq))) { in hda_component_master_bind()
118 if (!try_module_get(acomp->ops->owner)) { in hda_component_master_bind()
126 component_unbind_all(dev, acomp); in hda_component_master_bind()
136 struct i915_audio_component *acomp = &hda->audio_component; in hda_component_master_unbind() local
138 module_put(acomp->ops->owner); in hda_component_master_unbind()
139 component_unbind_all(dev, acomp); in hda_component_master_unbind()
140 WARN_ON(acomp->ops || acomp->dev); in hda_component_master_unbind()
158 struct i915_audio_component *acomp = &hda->audio_component; in hda_i915_init() local
173 if (!acomp->ops) { in hda_i915_init()