From: Michael Gernoth Date: Fri, 20 May 2011 19:02:35 +0000 (+0200) Subject: set default debounce_delay to 10ms X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/ms2-fixes/commitdiff_plain/9f52af43e84c2e1a5591621edd4e3ab3f66e0581?hp=0ae502f627e216e71b179a37079c9d43c7feeed3 set default debounce_delay to 10ms --- 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) {