Skip to content

Commit

Permalink
Staging: vt6656: Clean up unneccessary braces in power.c
Browse files Browse the repository at this point in the history
Clean up some unnecessary braces for conditional statements
where a single statement will do.

Signed-off-by: Philip Worrall <philip.worrall@googlemail.com>
Reviewed-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Philip Worrall authored and Greg Kroah-Hartman committed Mar 2, 2011
1 parent 7404eab commit 036dba1
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions drivers/staging/vt6656/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,8 @@ void PSvDisablePowerSaving(void *hDeviceContext)
MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_ALBCN);
pDevice->bEnablePSMode = FALSE;

if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) {
if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE)
PSbSendNullPacket(pDevice);
}

pDevice->bPWBitOn = FALSE;
return;
Expand Down Expand Up @@ -281,12 +280,11 @@ BOOL PSbSendNullPacket(void *hDeviceContext)
PSTxMgmtPacket pTxPacket = NULL;
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);

if (pDevice->bLinkPass == FALSE) {
if (pDevice->bLinkPass == FALSE)
return FALSE;
}

if ((pDevice->bEnablePSMode == FALSE) &&
(pDevice->fTxDataInSleep == FALSE)){
(pDevice->fTxDataInSleep == FALSE)) {
return FALSE;
}

Expand All @@ -310,9 +308,8 @@ BOOL PSbSendNullPacket(void *hDeviceContext)
));
}

if(pMgmt->eCurrMode != WMAC_MODE_IBSS_STA) {
if(pMgmt->eCurrMode != WMAC_MODE_IBSS_STA)
pTxPacket->p80211Header->sA3.wFrameCtl |= cpu_to_le16((WORD)WLAN_SET_FC_TODS(1));
}

memcpy(pTxPacket->p80211Header->sA3.abyAddr1, pMgmt->abyCurrBSSID, WLAN_ADDR_LEN);
memcpy(pTxPacket->p80211Header->sA3.abyAddr2, pMgmt->abyMACAddr, WLAN_ADDR_LEN);
Expand Down Expand Up @@ -347,9 +344,8 @@ BOOL PSbIsNextTBTTWakeUp(void *hDeviceContext)
BOOL bWakeUp = FALSE;

if (pMgmt->wListenInterval >= 2) {
if (pMgmt->wCountToWakeUp == 0) {
if (pMgmt->wCountToWakeUp == 0)
pMgmt->wCountToWakeUp = pMgmt->wListenInterval;
}

pMgmt->wCountToWakeUp --;

Expand Down

0 comments on commit 036dba1

Please sign in to comment.