From ddcb81e7419baa90fab79dbbb1b983a69a235c91 Mon Sep 17 00:00:00 2001 From: Tapasweni Pathak Date: Mon, 22 Sep 2014 22:03:43 +0530 Subject: [PATCH] staging: rtl8712: merge lines and remove unused variable for immediate return This patch merge two lines in a single line if immediate return is found. Unused variables in each case were removed manually as they are no longer needed. This is done using Coccinelle. Semantic patch used for this is as follows : @@ expression ret; identifier f; @@ -ret = +return f(...); -return ret; Signed-off-by: Tapasweni Pathak Signed-off-by: Greg Kroah-Hartman --- Reading git-format-patch failed