From: Diego Liziero <diegoliz@xxxxxxxxx> (Sorry, I forgot to put [1/2] in the previous mail subject) The semantic patch that makes this change is: (http://www.emn.fr/x-info/coccinelle/) @@ expression E; constant C; @@ ( - !E == C + E != C ) Signed-off-by: Diego Liziero <diegoliz@xxxxxxxxx> --- diff = --- ./drivers/isdn/hisax/hscx_irq.c 2009-04-13 01:21:26.000000000 +0200 +++ /tmp/cocci-output-25310-4eeefc-hscx_irq.c 2009-04-13 20:36:49.000000000 +0200 @@ -32,7 +32,7 @@ waitforXFW(struct IsdnCardState *cs, int { int to = 50; - while ((!(READHSCX(cs, hscx, HSCX_STAR) & 0x44) == 0x40) && to) { + while (((READHSCX(cs, hscx, HSCX_STAR) & 0x44) != 0x40) && to) { udelay(1); to--; } -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html