From: Julia Lawall Date: Sat, 23 Aug 2014 18:33:23 +0000 (+0200) Subject: video: fbdev: intelfb: delete double assignment X-Git-Tag: fixes-against-v3.18-rc2~41^2~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2079a513b0f03c8872322070944720d2c174b005;p=pandora-kernel.git video: fbdev: intelfb: delete double assignment Delete successive assignments to the same location. In the second case, = is converted to |=, which looks appropriate based on the values involved. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression i; @@ *i = ...; i = ...; // Signed-off-by: Julia Lawall Signed-off-by: Tomi Valkeinen --- Reading git-diff-tree failed