Tag: f883c4ca5e6948de4fd461ca4a4fbb15aff8bbff

staging: rtl8192u: remove return from end of void function

Author: Supriya Karanth <iskaranth@gmail.com> 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; …

Continue reading