Commit a984fa55 authored by Devendra Naga's avatar Devendra Naga Committed by Greg Kroah-Hartman

staging/vt6656: coding style fix in BSSvSecondTxData

this function seemed bit more coding style fix...

The following fixes:

remove spaces at start of line and use tabs
use space between if and (
give a space in a multiplication operation
use space after = and another variable/constant
Signed-off-by: default avatarDevendra Naga <devendra.aaru@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6bab320b
...@@ -1273,32 +1273,32 @@ void vResetCommandTimer(void *hDeviceContext) ...@@ -1273,32 +1273,32 @@ void vResetCommandTimer(void *hDeviceContext)
void BSSvSecondTxData(void *hDeviceContext) void BSSvSecondTxData(void *hDeviceContext)
{ {
PSDevice pDevice = (PSDevice)hDeviceContext; PSDevice pDevice = (PSDevice)hDeviceContext;
PSMgmtObject pMgmt = &(pDevice->sMgmtObj); PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
pDevice->nTxDataTimeCout++; pDevice->nTxDataTimeCout++;
if(pDevice->nTxDataTimeCout<4) //don't tx data if timer less than 40s if (pDevice->nTxDataTimeCout < 4) { //don't tx data if timer less than 40s
{ // printk("mike:%s-->no data Tx not exceed the desired Time as %d\n",__FUNCTION__,
// printk("mike:%s-->no data Tx not exceed the desired Time as %d\n",__FUNCTION__, // (int)pDevice->nTxDataTimeCout);
// (int)pDevice->nTxDataTimeCout); pDevice->sTimerTxData.expires = RUN_AT(10 * HZ); //10s callback
pDevice->sTimerTxData.expires = RUN_AT(10*HZ); //10s callback add_timer(&pDevice->sTimerTxData);
add_timer(&pDevice->sTimerTxData); return;
return; }
}
spin_lock_irq(&pDevice->lock);
spin_lock_irq(&pDevice->lock); //is wap_supplicant running successful OR only open && sharekey mode!
//is wap_supplicant running successful OR only open && sharekey mode! if (((pDevice->bLinkPass == TRUE) &&
if(((pDevice->bLinkPass ==TRUE)&&(pMgmt->eAuthenMode < WMAC_AUTH_WPA)) || //open && sharekey linking (pMgmt->eAuthenMode < WMAC_AUTH_WPA)) || //open && sharekey linking
(pDevice->fWPA_Authened == TRUE)) { //wpa linking (pDevice->fWPA_Authened == TRUE)) { //wpa linking
// printk("mike:%s-->InSleep Tx Data Procedure\n",__FUNCTION__); // printk("mike:%s-->InSleep Tx Data Procedure\n",__FUNCTION__);
pDevice->fTxDataInSleep = TRUE; pDevice->fTxDataInSleep = TRUE;
PSbSendNullPacket(pDevice); //send null packet PSbSendNullPacket(pDevice); //send null packet
pDevice->fTxDataInSleep = FALSE; pDevice->fTxDataInSleep = FALSE;
} }
spin_unlock_irq(&pDevice->lock); spin_unlock_irq(&pDevice->lock);
pDevice->sTimerTxData.expires = RUN_AT(10*HZ); //10s callback pDevice->sTimerTxData.expires = RUN_AT(10 * HZ); //10s callback
add_timer(&pDevice->sTimerTxData); add_timer(&pDevice->sTimerTxData);
return; return;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment