diff options
author | Georgiana Rodica Chelu <georgiana.chelu93@gmail.com> | 2016-09-24 20:35:53 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-25 10:42:35 (GMT) |
commit | b941f067ead3099eeeb3562d9de25664af3949f4 (patch) | |
tree | 9c9c85ca96ed70e3cf4c3aee9b22f47a245be69f /drivers | |
parent | a27e6e6d6512b96bfc4945a96d1bb730f1c5bea9 (diff) | |
download | linux-b941f067ead3099eeeb3562d9de25664af3949f4.tar.xz |
staging: rtl8188eu: core: rtw_security: Remove return statement from void function
Remove the return statement from the end of a void function
to clean up the code.
Issue found by checkpatch.pl script.
Signed-off-by: Georgiana Rodica Chelu <georgiana.chelu93@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/rtl8188eu/core/rtw_security.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_security.c b/drivers/staging/rtl8188eu/core/rtw_security.c index 442a614..85bb441 100644 --- a/drivers/staging/rtl8188eu/core/rtw_security.c +++ b/drivers/staging/rtl8188eu/core/rtw_security.c @@ -233,7 +233,6 @@ void rtw_wep_decrypt(struct adapter *padapter, u8 *precvframe) &crc, &payload[length-4])); } } - return; } /* 3 ===== TKIP related ===== */ |