mirror of https://gitee.com/openkylin/linux.git
Staging: rtl8187se: Fix space prohibited before semicolon in dot11d.c
This patch fixes the following checkpatch.pl issues in ieee80211/dot11d.c- WARNING: space prohibited before semicolon Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d58df7513d
commit
3e3f837c65
|
@ -106,7 +106,7 @@ Dot11d_UpdateCountryIe(
|
|||
return;
|
||||
}
|
||||
|
||||
for (j = 0 ; j < pTriple->NumChnls; j++) {
|
||||
for (j = 0; j < pTriple->NumChnls; j++) {
|
||||
pDot11dInfo->channel_map[pTriple->FirstChnl + j] = 1;
|
||||
pDot11dInfo->MaxTxPwrDbmList[pTriple->FirstChnl + j] = pTriple->MaxTxPowerInDbm;
|
||||
MaxChnlNum = pTriple->FirstChnl + j;
|
||||
|
|
Loading…
Reference in New Issue