Lines Matching refs:event
75 * that cause the ACPI notification event
79 u8 event;
84 static void ibm_handle_events(acpi_handle handle, u32 event, void *context);
235 * @handle: an ACPI handle to the device that caused the event
236 * @event: the event info (device specific)
240 * subsystem it is called when this device has an event to notify the OS of.
243 * synthesized into one event with data by this function. The event
245 * this as one event to the OS.
248 * only re-enable the interrupt that causes this event AFTER this method
251 static void ibm_handle_events(acpi_handle handle, u32 event, void *context)
253 u8 detail = event & 0x0f;
254 u8 subevent = event & 0xf0;
257 pr_debug("%s: Received notification %02x\n", __func__, event);
260 pr_debug("%s: generating bus event\n", __func__);
263 note->event, detail);
265 note->event = event;