Lines Matching defs:event
20 static u32 acpi_ev_fixed_event_dispatch(u32 event);
122 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
132 * Initialize the structure that keeps track of fixed event handlers and
139 /* Disable the fixed event */
201 /* Both the status and enable bits must be on for this event */
208 * Found an active (signalled) event. Invoke global event
229 * PARAMETERS: event - Event type
233 * DESCRIPTION: Clears the status bit for the requested event, calls the
234 * handler that previously registered for the event.
235 * NOTE: If there is no handler for the event, the event is
240 static u32 acpi_ev_fixed_event_dispatch(u32 event)
247 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
252 * and disable the event to prevent further interrupts.
254 if (!acpi_gbl_fixed_event_handlers[event].handler) {
255 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
257 event == ACPI_EVENT_PCIE_WAKE ? ACPI_ENABLE_EVENT : ACPI_DISABLE_EVENT);
260 "No installed handler for fixed event - %s (%u), disabling",
261 acpi_ut_get_event_name(event), event));
268 return ((acpi_gbl_fixed_event_handlers[event].
269 handler) (acpi_gbl_fixed_event_handlers[event].context));
306 /* Both the status and enable bits must be on for this event */