From 3fe68cc152fc7cc6a763c692544a0ab71926c800 Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Tue, 14 Oct 2008 18:00:19 +0200 Subject: [PATCH] [SCSI] sun3x_esp: Convert && to || The pattern !E && !E->fld is nonsensical. The patch below updates this according to the assumption that && should be ||. But perhaps another solution was intended. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // @disable and_comm@ expression E; identifier fld; @@ - !E && !E->fld + !E || !E->fld // Signed-off-by: Julia Lawall Acked-By: Thomas Bogendoerfer Signed-off-by: James Bottomley --- Reading git-format-patch failed