From 1cec9a1d3ff1717ef7be3dee0d818dcb8484e01e Mon Sep 17 00:00:00 2001 From: Simon Wilson Date: Thu, 3 Feb 2011 17:29:11 -0800 Subject: 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 --- drivers/input/keyboard/cypress-touchkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.1