staging: vt6656: removed braces from single line if-statement

removed braces from if-control flow structs whenever it
contained only one statement to comply with the coding style

Signed-off-by: Nandini Hanumanthagowda <nandu.hgowda@gmail.com>
Reviewed-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nandini Hanumanthagowda 2013-10-24 00:20:12 +05:30 committed by Greg Kroah-Hartman
parent 3cef1a2e8c
commit 05aaf1ac5f

View file

@ -274,15 +274,13 @@ void RATEvTxRateFallBack(struct vnt_private *pDevice,
return;
}
if (psNodeDBTable->uTimeCount >= AUTORATE_TIMEOUT) {
if (psNodeDBTable->uTimeCount >= AUTORATE_TIMEOUT)
psNodeDBTable->uTimeCount = 0;
}
for (ii = 0; ii < MAX_RATE; ii++) {
if (psNodeDBTable->wSuppRate & (0x0001<<ii)) {
if (bAutoRate[ii] == true) {
if (bAutoRate[ii] == true)
wIdxUpRate = (u16) ii;
}
} else {
bAutoRate[ii] = false;
}
@ -292,9 +290,8 @@ void RATEvTxRateFallBack(struct vnt_private *pDevice,
if ((psNodeDBTable->uTxOk[ii] != 0) ||
(psNodeDBTable->uTxFail[ii] != 0)) {
dwThroughputTbl[ii] *= psNodeDBTable->uTxOk[ii];
if (ii < RATE_11M) {
if (ii < RATE_11M)
psNodeDBTable->uTxFail[ii] *= 4;
}
dwThroughputTbl[ii] /= (psNodeDBTable->uTxOk[ii] + psNodeDBTable->uTxFail[ii]);
}
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Rate %d,Ok: %d, Fail:%d, Throughput:%d\n",