staging:rtl8723au: core: Added missing space reported by checkpatch.

This is a patch to the rtw_cmd.c file that fixes following
Error.

ERROR: spaces required around that '>' (ctx:WxV)

Signed-off-by: Sanjeev Sharma <Sanjeev_Sharma@mentor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sanjeev Sharma
2014-11-11 13:24:43 +05:30
committed by Greg Kroah-Hartman
parent b518cb97b8
commit af13ccf799

View File

@@ -954,7 +954,7 @@ static void traffic_status_watchdog(struct rtw_adapter *padapter)
/* check traffic for powersaving. */
if (((pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod +
pmlmepriv->LinkDetectInfo.NumTxOkInPeriod) > 8) ||
pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod >2)
pmlmepriv->LinkDetectInfo.NumRxUnicastOkInPeriod > 2)
bEnterPS = false;
else
bEnterPS = true;
@@ -1148,7 +1148,7 @@ static void rtw_chk_hi_queue_hdl(struct rtw_adapter *padapter)
cnt++;
if (cnt>10)
if (cnt > 10)
break;
val = rtl8723a_chk_hi_queue_empty(padapter);