提交 cd9d25ba 编写于 作者: D Dan Carpenter 提交者: Greg Kroah-Hartman

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: NDan Carpenter <error27@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 6de92dd6
...@@ -2788,16 +2788,18 @@ void CARDvUpdateBasicTopRate (PVOID pDeviceHandler) ...@@ -2788,16 +2788,18 @@ void CARDvUpdateBasicTopRate (PVOID pDeviceHandler)
//Determines the highest basic rate. //Determines the highest basic rate.
for (ii = RATE_54M; ii >= RATE_6M; ii --) { for (ii = RATE_54M; ii >= RATE_6M; ii --) {
if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) ) if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) ) {
byTopOFDM = ii; byTopOFDM = ii;
break; break;
}
} }
pDevice->byTopOFDMBasicRate = byTopOFDM; pDevice->byTopOFDMBasicRate = byTopOFDM;
for (ii = RATE_11M;; ii --) { for (ii = RATE_11M;; ii --) {
if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) ) if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) ) {
byTopCCK = ii; byTopCCK = ii;
break; break;
}
if (ii == RATE_1M) if (ii == RATE_1M)
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册