From: Michael Gernoth Date: Sun, 21 Aug 2011 13:19:55 +0000 (+0200) Subject: fix typo X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/ms2-fixes/commitdiff_plain/5df3a8e09f8ab9029a273b04aa8080dc23c1fee9 fix typo --- diff --git a/MS2Debounce/assets/debounce.ko b/MS2Debounce/assets/debounce.ko index 9de2161..12c2cfe 100644 Binary files a/MS2Debounce/assets/debounce.ko and b/MS2Debounce/assets/debounce.ko differ diff --git a/debounce.c b/debounce.c index 3176d4c..be78a44 100644 --- a/debounce.c +++ b/debounce.c @@ -39,7 +39,7 @@ static void hw_debounce_set(int enable, int time) { } if (time != -1) { - printk(KERN_INFO PREFIX "Setting hardware debounce itime for GPIO %d to %d (%dus)\n", gpio, time, (time+1)*31); + printk(KERN_INFO PREFIX "Setting hardware debounce time for GPIO %d to %d (%dus)\n", gpio, time, (time+1)*31); omap_set_gpio_debounce_time(gpio, time); } }