From 9f52af43e84c2e1a5591621edd4e3ab3f66e0581 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Fri, 20 May 2011 21:02:35 +0200 Subject: [PATCH 1/1] set default debounce_delay to 10ms --- debounce.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debounce.c b/debounce.c index e6398dc..9ae93f2 100644 --- a/debounce.c +++ b/debounce.c @@ -5,10 +5,10 @@ #define PREFIX "debounce: " -static int delay = 5; +static int delay = 10; module_param(delay, int, S_IRUSR | S_IRGRP | S_IROTH); -MODULE_PARM_DESC(delay, "debouncing delay (ms), default: 5"); +MODULE_PARM_DESC(delay, "debouncing delay (ms), default: 10"); static int find_ms2_dev(struct device *dev, void *data) { -- 2.39.2