From: Michael Gernoth Date: Sun, 21 Aug 2011 14:04:43 +0000 (+0200) Subject: more consistency X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/ms2-fixes/commitdiff_plain/8440ec7c4b58305b60157d0ce8ae0260ed880bca more consistency --- diff --git a/MS2Debounce/assets/debounce.ko b/MS2Debounce/assets/debounce.ko index 38fe879..54912b8 100644 Binary files a/MS2Debounce/assets/debounce.ko and b/MS2Debounce/assets/debounce.ko differ diff --git a/debounce.c b/debounce.c index 08dc7f4..e604016 100644 --- a/debounce.c +++ b/debounce.c @@ -352,8 +352,6 @@ static ssize_t store_hw_debounce(struct device *dev, struct device_attribute *at if (enable) { hw_debounce_set(1, -1); hw_debounce = 1; - hw_debounce_set(-1, 0); - hw_debounce_time = 0; } else { hw_debounce_set(-1, 0); @@ -379,6 +377,9 @@ static ssize_t store_hw_debounce_time(struct device *dev, struct device_attribut if ((time < 0) || (time > 0xff)) return count; + if (!hw_debounce) + return count; + hw_debounce_set(-1, time); hw_debounce_time = time;