mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-10 07:29:40 +00:00
rtl8188eu: Fix bug introduced in commit ef1472a
The bug caused failure to transfter data for any B/G network. Reported by Paolo Valleri Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
0306cad214
commit
993b021502
1 changed files with 2 additions and 1 deletions
|
@ -2067,7 +2067,8 @@ int process_recv_indicatepkts(struct adapter *padapter, union recv_frame *prfram
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!padapter->bDriverStopped) && (!padapter)) {
|
if ((!padapter->bDriverStopped) &&
|
||||||
|
(!padapter->bSurpriseRemoved)) {
|
||||||
/* indicate this recv_frame */
|
/* indicate this recv_frame */
|
||||||
RT_TRACE(_module_rtl871x_recv_c_, _drv_notice_, ("@@@@ process_recv_indicatepkts- recv_func recv_indicatepkt\n"));
|
RT_TRACE(_module_rtl871x_recv_c_, _drv_notice_, ("@@@@ process_recv_indicatepkts- recv_func recv_indicatepkt\n"));
|
||||||
rtw_recv_indicatepkt(padapter, prframe);
|
rtw_recv_indicatepkt(padapter, prframe);
|
||||||
|
|
Loading…
Reference in a new issue