Lines Matching refs:event
21 * pressed, or its autorepeat kicks in, an event is sent. This driver
22 * read those events from the small (32 event) queue and reports them.
53 * These event codes match firmware documentation, but other
106 u16 event;
119 event = status << 8;
127 event |= status;
128 if (event == 0xdead)
138 * mapping events to a press/release event pair; then
139 * to avoid adding extra events, skip the second event
142 if (event == last_event) {
146 last_event = event;
149 event &= ~0x0800;
152 ke = sparse_keymap_entry_from_scancode(keys->input, event);
155 "input event 0x%04x--> keycode %d\n",
156 event, keycode);
199 /* REVISIT: flush the event queue? */