aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/keyboard
diff options
context:
space:
mode:
authorSimon Wilson <simonwilson@google.com>2011-02-03 17:29:11 -0800
committerArve Hjønnevåg <arve@android.com>2011-11-17 17:53:07 -0800
commit1cec9a1d3ff1717ef7be3dee0d818dcb8484e01e (patch)
tree3262ebe234e5ebd87769b46b9be4bce004197d19 /drivers/input/keyboard
parent0f37082995c87e963a564002e0cd490d3896a1c9 (diff)
downloadkernel_samsung_aries-1cec9a1d3ff1717ef7be3dee0d818dcb8484e01e.zip
kernel_samsung_aries-1cec9a1d3ff1717ef7be3dee0d818dcb8484e01e.tar.gz
kernel_samsung_aries-1cec9a1d3ff1717ef7be3dee0d818dcb8484e01e.tar.bz2
input: cypress-touchkey: use more sensitive 8.9 firmware
Firmware 9.9 has too low a sensitivity for the touchkeys so stay on the previous revision (8.9) until the new revision is ready. Signed-off-by: Simon Wilson <simonwilson@google.com>
Diffstat (limited to 'drivers/input/keyboard')
-rwxr-xr-xdrivers/input/keyboard/cypress-touchkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/cypress-touchkey.c b/drivers/input/keyboard/cypress-touchkey.c
index 23a721c..276b336 100755
--- a/drivers/input/keyboard/cypress-touchkey.c
+++ b/drivers/input/keyboard/cypress-touchkey.c
@@ -393,7 +393,7 @@ static int cypress_touchkey_probe(struct i2c_client *client,
dev_info(dev, "%s: hardware rev1 = %#02x, rev2 = %#02x\n", __func__,
data[1], data[2]);
- if (data[1] != 0x9 || data[2] < 0x9)
+ if (data[1] != 0x8 || data[2] < 0x9)
input_dev->open = cypress_touchkey_open;
err = input_register_device(input_dev);