diff options
author | Simon Wilson <simonwilson@google.com> | 2011-02-03 17:29:11 -0800 |
---|---|---|
committer | Arve Hjønnevåg <arve@android.com> | 2011-11-17 17:53:07 -0800 |
commit | 1cec9a1d3ff1717ef7be3dee0d818dcb8484e01e (patch) | |
tree | 3262ebe234e5ebd87769b46b9be4bce004197d19 /drivers/input/keyboard | |
parent | 0f37082995c87e963a564002e0cd490d3896a1c9 (diff) | |
download | kernel_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-x | drivers/input/keyboard/cypress-touchkey.c | 2 |
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); |