From: Ebru Akagunduz Date: Tue, 28 Oct 2014 08:46:35 +0000 (+0200) Subject: staging: ft1000: Remove curly braces for single statement blocks X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~879 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=346b0d4a0818fa76bfe0dbe67c6c7ad3e19845e1;p=pandora-kernel.git staging: ft1000: Remove curly braces for single statement blocks This patch removes curly braces for single statement blocks using following coccinelle script: @@ expression e1; @@ - if (e1) { + if (e1) return ...; - } Signed-off-by: Ebru Akagunduz Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed