From: Julia Lawall Date: Sat, 23 Aug 2014 18:33:25 +0000 (+0200) Subject: MIPS: BCM63xx: delete double assignment X-Git-Tag: fixes-for-v3.18-merge-window~106^2~10 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbc5367f50d930bbe6ad4750d3250614c7babcc0;p=pandora-kernel.git MIPS: BCM63xx: delete double assignment Delete successive assignments to the same location. In each case, the duplicated assignment is modified to be in line with other nearby code. 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 Cc: joe@perches.com Cc: kernel-janitors@vger.kernel.org Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/7565/ Signed-off-by: Ralf Baechle --- Reading git-diff-tree failed