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>
This commit is contained in:
Georgiana Rodica Chelu 2016-09-24 23:35:53 +03:00 committed by Greg Kroah-Hartman
parent a27e6e6d65
commit b941f067ea
1 changed files with 0 additions and 1 deletions

View File

@ -233,7 +233,6 @@ void rtw_wep_decrypt(struct adapter *padapter, u8 *precvframe)
&crc, &payload[length-4]));
}
}
return;
}
/* 3 ===== TKIP related ===== */