From 1703c17b8a02b7d1dd3080c4ce9d41a83e95a071 Mon Sep 17 00:00:00 2001 From: Vaishali Thakkar Date: Sun, 14 Sep 2014 13:46:37 +0530 Subject: [PATCH] Staging: rtl8188eu: os_dep: Compression of lines for immediate return This patch compresses two lines in to a single line in file rtw_android.c if immediate return statement is found. It also removes variable bytes_written as it is no longer needed. It is done using script Coccinelle. And coccinelle uses following semantic patch for this compression function: @@ expression ret; identifier f; @@ -ret = +return f(...); -return ret; Signed-off-by: Vaishali Thakkar Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-format-patch failed