staging: ft1000: Remove curly braces for single statement blocks
authorEbru Akagunduz <ebru.akagunduz@gmail.com>
Tue, 28 Oct 2014 08:46:35 +0000 (10:46 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Oct 2014 08:53:09 +0000 (16:53 +0800)
commit346b0d4a0818fa76bfe0dbe67c6c7ad3e19845e1
tree65c54fa5fc45ca1b5e54980079d0c3762ea10503
parent6b9214b793a4ae2350f748a587a61a267bfd119b
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 <ebru.akagunduz@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ft1000/ft1000-usb/ft1000_debug.c