From: Simon Schuster Date: Sat, 4 Jan 2014 15:25:15 +0000 (+0100) Subject: Staging: vt6656: Combined nested conditions X-Git-Tag: v3.14-rc1~150^2~153 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f284d79fc11f8d8c603f32d4fa341c379abdfa8;p=pandora-kernel.git Staging: vt6656: Combined nested conditions This patch reduces the level of indentation in bssdb.c of the vt6656 driver by transforming nested conditions to a series of logical conjunctions. E.g. if (cond1) { if (cond2) { block(); } } is transformed to if (cond1 && cond2) { block(); } Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed