staging: rtl8188eu: remove return from void function

Remove return from a void function to clear a checkpatch warning.
WARNING: void function return statements are not generally useful

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Michael Straube 2018-11-23 21:41:04 +01:00 committed by Greg Kroah-Hartman
parent c202e1ab78
commit 5e51ed1a90

View File

@ -592,9 +592,7 @@ void rtw_survey_event_callback(struct adapter *adapter, u8 *pbuf)
}
exit:
spin_unlock_bh(&pmlmepriv->lock);
return;
}
void rtw_surveydone_event_callback(struct adapter *adapter, u8 *pbuf)