Lines Matching full:comp
21 struct hda_component *comp; in hda_component_acpi_device_notify() local
26 comp = hda_component_from_index(parent, i); in hda_component_acpi_device_notify()
27 if (comp->dev && comp->acpi_notify) in hda_component_acpi_device_notify()
28 comp->acpi_notify(acpi_device_handle(comp->adev), event, comp->dev); in hda_component_acpi_device_notify()
40 struct hda_component *comp; in hda_component_manager_bind_acpi_notifications() local
49 comp = hda_component_from_index(parent, i); in hda_component_manager_bind_acpi_notifications()
51 comp->acpi_notifications_supported; in hda_component_manager_bind_acpi_notifications()
89 struct hda_component *comp; in hda_component_manager_playback_hook() local
94 comp = hda_component_from_index(parent, i); in hda_component_manager_playback_hook()
95 if (comp->dev && comp->pre_playback_hook) in hda_component_manager_playback_hook()
96 comp->pre_playback_hook(comp->dev, action); in hda_component_manager_playback_hook()
99 comp = hda_component_from_index(parent, i); in hda_component_manager_playback_hook()
100 if (comp->dev && comp->playback_hook) in hda_component_manager_playback_hook()
101 comp->playback_hook(comp->dev, action); in hda_component_manager_playback_hook()
104 comp = hda_component_from_index(parent, i); in hda_component_manager_playback_hook()
105 if (comp->dev && comp->post_playback_hook) in hda_component_manager_playback_hook()
106 comp->post_playback_hook(comp->dev, action); in hda_component_manager_playback_hook()