From: Navya Sri Nizamkari Date: Fri, 27 Feb 2015 20:36:44 +0000 (+0530) Subject: staging: rtl8188eu: Compress two statements into one. X-Git-Tag: omap-for-v4.2/o2_dc~155^2~138^2~838 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25034ff83c25c8d1a114e3219fbf6c7b5a006622;p=pandora-kernel.git staging: rtl8188eu: Compress two statements into one. This patch removes the use of a variable used only for returning a value. The following coccinelle script was used to discover it: @@ expression ret; identifier f; @@ -ret = +return f(...); -return ret; It also fixes the checkpatch.pl warning about line being over 80 characters, in the lines where changes were made. Signed-off-by: Navya Sri Nizamkari Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed