staging: rtl8188eu: os_dep: Removed unnecessary return.
authorGulsah Kose <gulsah.1004@gmail.com>
Thu, 30 Oct 2014 00:28:03 +0000 (02:28 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Oct 2014 19:20:15 +0000 (12:20 -0700)
commit04947c5be5ca3824586f94352293549b899b2d89
treee8544d5082de48228629bfe51784876fa6be96dd
parent9d9921e93078075b9142b7e8d68a038416967d4c
staging: rtl8188eu: os_dep: Removed unnecessary return.

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

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

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/os_dep/usb_intf.c