summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2012-12-12 20:31:06 +0100
committerGerrit Code Review <gerrit@5.9.244.119>2012-12-12 20:31:06 +0100
commit9c74244421341850820904e5f42c1fde8847cc1e (patch)
tree2d7b1f11434a5a088c5ff289f346b77b8f65c229
parentAdd ignore blkid flag for Transformers (diff)
parentIgnore bma150 in event handler (diff)
downloadandroid_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.tar
android_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.tar.gz
android_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.tar.bz2
android_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.tar.lz
android_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.tar.xz
android_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.tar.zst
android_bootable_recovery-9c74244421341850820904e5f42c1fde8847cc1e.zip
-rw-r--r--minuitwrp/events.c2
1 files changed, 1 insertions, 1 deletions
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;
}