aboutsummaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2012-01-26 16:49:58 -0800
committerKoushik Dutta <koushd@gmail.com>2012-01-26 16:49:58 -0800
commitccc1fdb386129602c309ccca109ed12bc4f035e5 (patch)
tree6ca344bec4de5dd24d7544005c2026553f426731 /minui
parent18e3f62ad27c28b66f7eba52430af547f917b61e (diff)
downloadbootable_recovery-ccc1fdb386129602c309ccca109ed12bc4f035e5.zip
bootable_recovery-ccc1fdb386129602c309ccca109ed12bc4f035e5.tar.gz
bootable_recovery-ccc1fdb386129602c309ccca109ed12bc4f035e5.tar.bz2
derp
Change-Id: I5ffece3af80c0c328c61975d46f4de4cb22f2282
Diffstat (limited to 'minui')
-rw-r--r--minui/events.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/minui/events.c b/minui/events.c
index a619df6..2918afa 100644
--- a/minui/events.c
+++ b/minui/events.c
@@ -23,7 +23,6 @@
#include <linux/input.h>
#include "minui.h"
-#include "cutils/log.h"
#define MAX_DEVICES 16
#define MAX_MISC_FDS 16
@@ -70,7 +69,7 @@ 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) && !test_bit(EV_ABS, ev_bits)) {
+ if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits)) {
close(fd);
continue;
}