From 07a3a74e9e52aa60fba7e1e72f1ac30b70558892 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Tue, 11 Dec 2012 15:13:21 +0000 Subject: Ignore bma150 in event handler --- minuitwrp/events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minuitwrp/events.c b/minuitwrp/events.c index 557ab84e4..285b5b6e7 100644 --- a/minuitwrp/events.c +++ b/minuitwrp/events.c @@ -160,7 +160,7 @@ static int vk_init(struct ev *e) #endif // Blacklist these "input" devices - if (strcmp(e->deviceName, "bma250") == 0) + if (strcmp(e->deviceName, "bma250") == 0 || strcmp(e->deviceName, "bma150") == 0) { e->ignored = 1; } -- cgit v1.2.3