From 385269885f156c76518748fcb215bd2ca81ef000 Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Fri, 5 Jun 2009 17:07:38 +0200 Subject: [PATCH] Staging: rtl8192su: Correct use of ! and & Correct priority problem in the use of ! and &. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // @@ expression E; constant C; @@ - !E & C + !(E & C) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-format-patch failed