From: Supriya Karanth Date: Sun, 15 Mar 2015 03:42:52 +0000 (+0900) Subject: staging: rtl8192u: remove return from end of void function X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~406 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f883c4ca5e6948de4fd461ca4a4fbb15aff8bbff;p=pandora-kernel.git staging: rtl8192u: remove return from end of void function This patch removes the return statement at the end of a void function as it is not necessary. found by checkpatch.pl: WARNING: void function return statements are not generally useful changes made using coccinelle script: @@ @@ ... when != if (...) return; when != if (...) { ... return;} -return; Signed-off-by: Supriya Karanth Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed