Title: [6045] trunk/drivers/input/keyboard/bf54x-keys.c: Apply lkml patch: ! has a higher priority than >
Revision
6045
Author
hennerich
Date
2009-02-02 02:32:25 -0600 (Mon, 02 Feb 2009)

Log Message

Apply lkml patch: ! has a higher priority than >

Signed-off-by: Roel Kluin <[email protected]>

Modified Paths

Diff

Modified: trunk/drivers/input/keyboard/bf54x-keys.c (6044 => 6045)


--- trunk/drivers/input/keyboard/bf54x-keys.c	2009-02-02 06:43:08 UTC (rev 6044)
+++ trunk/drivers/input/keyboard/bf54x-keys.c	2009-02-02 08:32:25 UTC (rev 6045)
@@ -209,8 +209,8 @@
 		goto out;
 	}
 
-	if (!pdata->debounce_time || !pdata->debounce_time > MAX_MULT ||
-	    !pdata->coldrive_time || !pdata->coldrive_time > MAX_MULT) {
+	if (!pdata->debounce_time || pdata->debounce_time > MAX_MULT ||
+	    !pdata->coldrive_time || pdata->coldrive_time > MAX_MULT) {
 		printk(KERN_ERR DRV_NAME
 			": Invalid Debounce/Columdrive Time from pdata\n");
 		bfin_write_KPAD_MSEL(0xFF0);	/* Default MSEL	*/
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
http://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to