staging: rtl8188eu: core: rtw_mlme: 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:
parent
e453eecbe6
commit
a27e6e6d65
@ -259,7 +259,6 @@ void rtw_generate_random_ibss(u8 *pibss)
|
||||
pibss[3] = (u8)(curtime & 0xff);/* p[0]; */
|
||||
pibss[4] = (u8)((curtime>>8) & 0xff);/* p[1]; */
|
||||
pibss[5] = (u8)((curtime>>16) & 0xff);/* p[2]; */
|
||||
return;
|
||||
}
|
||||
|
||||
u8 *rtw_get_capability_from_ie(u8 *ie)
|
||||
@ -557,7 +556,6 @@ static int rtw_is_desired_network(struct adapter *adapter, struct wlan_network *
|
||||
void rtw_atimdone_event_callback(struct adapter *adapter, u8 *pbuf)
|
||||
{
|
||||
RT_TRACE(_module_rtl871x_mlme_c_, _drv_err_, ("receive atimdone_evet\n"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user