* commit '98e2c509a636db7c4d9a89c086e8d4ac03a6970b': recovery: Handle EV_SW events
This commit is contained in:
commit
91f40d9bf5
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ int ev_init(ev_callback input_cb, void *data)
|
|||
}
|
||||
|
||||
/* TODO: add ability to specify event masks. For now, just assume
|
||||
* that only EV_KEY and EV_REL event types are ever needed. */
|
||||
if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits)) {
|
||||
* that only EV_KEY, EV_REL & EV_SW event types are ever needed. */
|
||||
if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits) && !test_bit(EV_SW, ev_bits)) {
|
||||
close(fd);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue