summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRakesh Iyer2011-07-25 09:49:55 +0200
committerDmitry Torokhov2011-07-25 10:26:17 +0200
commit5599d2e60b1191520778def7c0658fbc6de6d8c1 (patch)
treeab3a56b3b6b5631866314901e9d19580635866a6
parentInput: kxtj9 - fix locking typo in kxtj9_set_poll() (diff)
downloadkernel-qcow2-linux-5599d2e60b1191520778def7c0658fbc6de6d8c1.tar.gz
kernel-qcow2-linux-5599d2e60b1191520778def7c0658fbc6de6d8c1.tar.xz
kernel-qcow2-linux-5599d2e60b1191520778def7c0658fbc6de6d8c1.zip
Input: tegra-kbc - enable key autorepeat
To support key repeats, keyboard needs to be setup as an autorepeating device. Signed-off-by: Rakesh Iyer <riyer@nvidia.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
-rw-r--r--drivers/input/keyboard/tegra-kbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c
index 2b3b73ec6689..da3828fc2c09 100644
--- a/drivers/input/keyboard/tegra-kbc.c
+++ b/drivers/input/keyboard/tegra-kbc.c
@@ -657,7 +657,7 @@ static int __devinit tegra_kbc_probe(struct platform_device *pdev)
input_set_drvdata(input_dev, kbc);
- input_dev->evbit[0] = BIT_MASK(EV_KEY);
+ input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
input_set_capability(input_dev, EV_MSC, MSC_SCAN);
input_dev->keycode = kbc->keycode;