staging: rtl8188eu: core: Removed unnecessary return keyword.
authorGulsah Kose <gulsah.1004@gmail.com>
Wed, 29 Oct 2014 04:06:57 +0000 (06:06 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Oct 2014 19:20:15 +0000 (12:20 -0700)
commit9d9921e93078075b9142b7e8d68a038416967d4c
tree1aad486f1bedf0544e9fa7d8d083299bad7f1950
parent16fc54ee26912d3f2450bc4832b19c943dbdff17
staging: rtl8188eu: core: Removed unnecessary return keyword.

This patch fixes
WARNING:  void function return statements are not generally useful
checkpatch.pl warning in rtw_efuse.c by using this coccinelle script

@r@
identifier i;
@@
void i(...)
{
...
-return;
}

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_efuse.c