Commit df9ce52c authored by Hugo Lange's avatar Hugo Lange Committed by Greg Kroah-Hartman

staging: rtl8188eu: remove unnecessary braces from if/else

Removed unnecessary braces for single blocks.
Signed-off-by: default avatarHugo Lange <hugolange7000@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 74a6565f
......@@ -394,11 +394,11 @@ static void ODM_PhyStatusQuery_92CSeries(struct odm_dm_struct *dm_odm,
{
odm_RxPhyStatus92CSeries_Parsing(dm_odm, pPhyInfo, pPhyStatus,
pPktinfo);
if (dm_odm->RSSI_test) {
if (dm_odm->RSSI_test)
;/* Select the packets to do RSSI checking for antenna switching. */
} else {
else
odm_Process_RSSIForDM(dm_odm, pPhyInfo, pPktinfo);
}
}
void ODM_PhyStatusQuery(struct odm_dm_struct *dm_odm,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment