From: Larry Finger Date: Sun, 17 Nov 2013 19:32:15 +0000 (-0600) Subject: staging: r8188eu: Fix AP mode X-Git-Tag: v3.13-rc2~16^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ecfc0f45033584ec58617cf6ec37f75833d97e8;p=profile%2Fcommon%2Fkernel-common.git staging: r8188eu: Fix AP mode Two code lines were accidentally deleted. Restore them. Signed-off-by: Larry Finger Cc: Stable Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/core/rtw_ap.c b/drivers/staging/rtl8188eu/core/rtw_ap.c index 2c678f4..2f548eb 100644 --- a/drivers/staging/rtl8188eu/core/rtw_ap.c +++ b/drivers/staging/rtl8188eu/core/rtw_ap.c @@ -1115,6 +1115,9 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf, int len) return _FAIL; } + /* fix bug of flush_cam_entry at STOP AP mode */ + psta->state |= WIFI_AP_STATE; + rtw_indicate_connect(padapter); pmlmepriv->cur_network.join_res = true;/* for check if already set beacon */ return ret; }