mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 23:36:49 +07:00
Staging : wilc1000: Remove braces for single statement blocks
This patch fixes the following checkpatch.pl warning: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3369463284
commit
29edbe5e29
@ -855,9 +855,8 @@ s32 ParseNetworkInfo(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo)
|
||||
|
||||
/* Get DTIM Period */
|
||||
pu8TimElm = get_tim_elm(pu8msa, (u16RxLen + FCS_LEN), u8index);
|
||||
if (pu8TimElm != 0) {
|
||||
if (pu8TimElm != 0)
|
||||
pstrNetworkInfo->u8DtimPeriod = pu8TimElm[3];
|
||||
}
|
||||
pu8IEs = &pu8msa[MAC_HDR_LEN + TIME_STAMP_LEN + BEACON_INTERVAL_LEN + CAP_INFO_LEN];
|
||||
u16IEsLen = u16RxLen - (MAC_HDR_LEN + TIME_STAMP_LEN + BEACON_INTERVAL_LEN + CAP_INFO_LEN);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user