Tag: 346b0d4a0818fa76bfe0dbe67c6c7ad3e19845e1

staging: ft1000: Remove curly braces for single statement blocks

Author: Ebru Akagunduz <ebru.akagunduz@gmail.com> 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 — drivers/staging/ft1000/ft1000-usb/ft1000_debug.c | 12 ++++——– 1 file changed, 4 insertions(+), 8 deletions(-)   diff …

Continue reading