summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPradeep Goudagunta <pgoudagunta@nvidia.com>2011-07-08 19:47:31 +0530
committerManish Tuteja <mtuteja@nvidia.com>2011-07-28 05:38:55 -0700
commit0ad9d47423f4aaba7d90e1dbf0338de41690f428 (patch)
treedf6a487ecc2945325d90e7825b1947604b23bfa4
parent432c968aa3543253507c9c85c525b4cc7c8dfa5f (diff)
ARM: tegra: whistler: kbc: Reducing scan timeout
Reducing the scan timeout for the continuous polling mode from 3sec to 2 sec to have faster suspend. Bug 845098 Change-Id: Iec9c0cda0bc4dbe91fd683aaa9c92ef4033f1314 Reviewed-on: http://git-master/r/40222 Tested-by: Victor Ryabukhin <vryabukhin@nvidia.com> Tested-by: Pradeep Goudagunta <pgoudagunta@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
-rw-r--r--arch/arm/mach-tegra/board-whistler-kbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-whistler-kbc.c b/arch/arm/mach-tegra/board-whistler-kbc.c
index 95bfa774ecaa..76213e292f55 100644
--- a/arch/arm/mach-tegra/board-whistler-kbc.c
+++ b/arch/arm/mach-tegra/board-whistler-kbc.c
@@ -71,7 +71,7 @@ static struct tegra_kbc_wake_key whistler_wake_cfg[] = {
static struct tegra_kbc_platform_data whistler_kbc_platform_data = {
.debounce_cnt = 20,
.repeat_cnt = 50 * 32,
- .scan_timeout_cnt = 3000 * 32,
+ .scan_timeout_cnt = 2000 * 32,
.plain_keycode = plain_kbd_keycode,
.fn_keycode = NULL,
.is_filter_keys = false,