[PATCH][TRIVIAL] Bugzilla bug # 322 - double logical operatordrivers/char/sx.c

From: Josef 'Jeff' Sipek
Date: Sun Dec 21 2003 - 01:56:18 EST


Simple clean up patch to remove double logical operators.

Josef 'Jeff' Sipek

--- linux-2.5/drivers/char/sx.c.orig 2003-08-06 18:23:32.000000000 -0400
+++ linux-2.5/drivers/char/sx.c 2003-08-06 18:20:03.000000000 -0400
@@ -511,13 +511,13 @@

func_enter ();

- for (i=0; i < TIMEOUT_1 > 0;i++)
+ for (i=0; i < TIMEOUT_1 ;i++)
if ((read_sx_byte (board, offset) & mask) == correctval) {
func_exit ();
return 1;
}

- for (i=0; i < TIMEOUT_2 > 0;i++) {
+ for (i=0; i < TIMEOUT_2 ;i++) {
if ((read_sx_byte (board, offset) & mask) == correctval) {
func_exit ();
return 1;
@@ -537,13 +537,13 @@

func_enter ();

- for (i=0; i < TIMEOUT_1 > 0;i++)
+ for (i=0; i < TIMEOUT_1 ;i++)
if ((read_sx_byte (board, offset) & mask) != badval) {
func_exit ();
return 1;
}

- for (i=0; i < TIMEOUT_2 > 0;i++) {
+ for (i=0; i < TIMEOUT_2 ;i++) {
if ((read_sx_byte (board, offset) & mask) != badval) {
func_exit ();
return 1;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/