From: Simon Schuster Date: Sat, 4 Jan 2014 15:25:13 +0000 (+0100) Subject: Staging: vt6656: Combine "else { if" to "else if" X-Git-Tag: v3.14-rc1~150^2~155 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd2251e2331d26184cea15fc28a0cabebca8d321;p=pandora-kernel.git Staging: vt6656: Combine "else { if" to "else if" This patch combines single ifs within the block of an else to a single else if statement. Therefore code that looks like that else { if (cond) { statements; } else { other_statements; } } is converted to code that looks like that else if (cond) { statements; } else { other_statements; } Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed