mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 00:24:20 +00:00
rtl8188eu: Remove "if 1"
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
715a0150a8
commit
cfd60faf5e
21 changed files with 2 additions and 682 deletions
|
@ -2533,21 +2533,17 @@ ReadChipVersion8188E(
|
|||
|
||||
|
||||
/* if DBG */
|
||||
#if 1
|
||||
dump_chip_info(ChipVersion);
|
||||
#endif
|
||||
|
||||
pHalData->VersionID = ChipVersion;
|
||||
|
||||
if (IS_1T2R(ChipVersion)){
|
||||
pHalData->rf_type = RF_1T2R;
|
||||
pHalData->NumTotalRFPath = 2;
|
||||
}
|
||||
else if (IS_2T2R(ChipVersion)){
|
||||
} else if (IS_2T2R(ChipVersion)){
|
||||
pHalData->rf_type = RF_2T2R;
|
||||
pHalData->NumTotalRFPath = 2;
|
||||
}
|
||||
else{
|
||||
} else{
|
||||
pHalData->rf_type = RF_1T1R;
|
||||
pHalData->NumTotalRFPath = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue