diff options
author | Laxman Dewangan <ldewangan@nvidia.com> | 2012-02-01 11:12:16 +0530 |
---|---|---|
committer | Rohan Somvanshi <rsomvanshi@nvidia.com> | 2012-02-03 05:24:18 -0800 |
commit | 1bd0d83b0b8565635a5cc749891453055cb686d4 (patch) | |
tree | ada481c93bba3b0c257a55f3313f9d06d580d84b | |
parent | e4c0e231c682c3a1cfb7b160071aeac4c7437cf3 (diff) |
arm: tegra: enterprise/cardhu: set debounce time to 20ms.
bug 925600
Change-Id: I2560a0874f5af96a8f59922ab0f267c676662ca1
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Reviewed-on: http://git-master/r/78606
Reviewed-by: Automatic_Commit_Validation_User
-rw-r--r-- | arch/arm/mach-tegra/board-cardhu-kbc.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-tegra/board-enterprise-kbc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/board-cardhu-kbc.c b/arch/arm/mach-tegra/board-cardhu-kbc.c index a693772948f0..69328747d3de 100644 --- a/arch/arm/mach-tegra/board-cardhu-kbc.c +++ b/arch/arm/mach-tegra/board-cardhu-kbc.c @@ -67,7 +67,7 @@ static struct tegra_kbc_wake_key cardhu_wake_cfg[] = { }; static struct tegra_kbc_platform_data cardhu_kbc_platform_data = { - .debounce_cnt = 20, + .debounce_cnt = 20 * 32, /* 20ms debounce time */ .repeat_cnt = 1, .scan_count = 30, .wakeup = true, diff --git a/arch/arm/mach-tegra/board-enterprise-kbc.c b/arch/arm/mach-tegra/board-enterprise-kbc.c index 982d0e474f24..4b719d78c9a3 100644 --- a/arch/arm/mach-tegra/board-enterprise-kbc.c +++ b/arch/arm/mach-tegra/board-enterprise-kbc.c @@ -70,7 +70,7 @@ static struct tegra_kbc_wake_key enterprise_wake_cfg[] = { }; static struct tegra_kbc_platform_data enterprise_kbc_platform_data = { - .debounce_cnt = 20, + .debounce_cnt = 20 * 32, /* 20 ms debaunce time */ .repeat_cnt = 1, .scan_count = 30, .wakeup = true, |