From: Quentin Lambert Date: Sun, 7 Sep 2014 18:03:32 +0000 (+0200) Subject: PCI: Remove assignment from "if" conditions X-Git-Tag: omap-for-v3.19/prcm-cleanup~136^2~8^4~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79e50e72986c9fcb06d707ce587cfd24fefa33e3;p=pandora-kernel.git PCI: Remove assignment from "if" conditions The following Coccinelle semantic patch was used to find and correct cases of assignments in "if" conditions: @@ expression var, expr; statement S; @@ + var = expr; if( - (var = expr) + var ) S Signed-off-by: Quentin Lambert Signed-off-by: Bjorn Helgaas --- Reading git-diff-tree failed