From 9eac685dbc3fe955c4896605cd16e24612494576 Mon Sep 17 00:00:00 2001 From: Chi Pham Date: Sun, 9 Mar 2014 14:11:11 +0100 Subject: [PATCH] staging:vt6656: Removed assignment in if statement. The following coccinelle script found the match: @@ expression E0, E1, E2; statement S0; @@ - if ((E1 = E2) == E0) + E1 = E2; + if (E1 == E0) S0 Signed-off-by: Chi Pham Acked-by: Paul E. McKenney Signed-off-by: Peter P Waskiewicz Jr --- Reading git-format-patch failed