mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: vt6655: add missing curly braces
It's clear from the indent levels and the context that there are supposed to be curly braces here. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
6de92dd649
commit
cd9d25ba31
1 changed files with 4 additions and 2 deletions
|
@ -2788,16 +2788,18 @@ void CARDvUpdateBasicTopRate (PVOID pDeviceHandler)
|
|||
|
||||
//Determines the highest basic rate.
|
||||
for (ii = RATE_54M; ii >= RATE_6M; ii --) {
|
||||
if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) )
|
||||
if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) ) {
|
||||
byTopOFDM = ii;
|
||||
break;
|
||||
}
|
||||
}
|
||||
pDevice->byTopOFDMBasicRate = byTopOFDM;
|
||||
|
||||
for (ii = RATE_11M;; ii --) {
|
||||
if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) )
|
||||
if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) ) {
|
||||
byTopCCK = ii;
|
||||
break;
|
||||
}
|
||||
if (ii == RATE_1M)
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue