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 */
197 /* Both the status and enable bits must be on for this event */
204 * Found an active (signalled) event. Invoke global event
225 * PARAMETERS: event - Event type
229 * DESCRIPTION: Clears the status bit for the requested event, calls the
230 * handler that previously registered for the event.
231 * NOTE: If there is no handler for the event, the event is
236 static u32 acpi_ev_fixed_event_dispatch(u32 event)
243 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
248 * and disable the event to prevent further interrupts.
250 if (!acpi_gbl_fixed_event_handlers[event].handler) {
251 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
256 "No installed handler for fixed event - %s (%u), disabling",
257 acpi_ut_get_event_name(event), event));
264 return ((acpi_gbl_fixed_event_handlers[event].
265 handler) (acpi_gbl_fixed_event_handlers[event].context));
302 /* Both the status and enable bits must be on for this event */