staging: vt6655: remove braces for single statements if
This fixes several "braces {} are not necessary for single statement blocks" checkpatch warnings. Signed-off-by: Guillaume Clement <gclement@baobob.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
fa13849f58
Коммит
cba60905f1
|
@ -248,9 +248,8 @@ PSvSendPSPOLL(
|
|||
pTxPacket->cbMPDULen = WLAN_HDR_ADDR2_LEN;
|
||||
pTxPacket->cbPayloadLen = 0;
|
||||
// send the frame
|
||||
if (csMgmt_xmit(pDevice, pTxPacket) != CMD_STATUS_PENDING) {
|
||||
if (csMgmt_xmit(pDevice, pTxPacket) != CMD_STATUS_PENDING)
|
||||
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Send PS-Poll packet failed..\n");
|
||||
}
|
||||
}
|
||||
|
||||
/*+
|
||||
|
|
|
@ -684,9 +684,8 @@ VNTWIFIbMeasureReport(
|
|||
pMgmt->uLengthOfRepEIDs += (2 + pMgmt->pCurrMeasureEIDRep->len);
|
||||
pMgmt->pCurrMeasureEIDRep = (PWLAN_IE_MEASURE_REP) pbyCurrentEID;
|
||||
}
|
||||
if (bEndOfReport) {
|
||||
if (bEndOfReport)
|
||||
IEEE11hbMSRRepTx(pMgmt);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -4114,9 +4114,8 @@ s_vMgrRxProbeRequest(
|
|||
if (pTxPacket != NULL) {
|
||||
/* send the frame */
|
||||
Status = csMgmt_xmit(pDevice, pTxPacket);
|
||||
if (Status != CMD_STATUS_PENDING) {
|
||||
if (Status != CMD_STATUS_PENDING)
|
||||
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Mgt:Probe response tx failed\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче