mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 12:31:52 -04:00
staging: rtl8723bs: fix spacing around operators
Fix checkpatch check: CHECK: spaces preferred around that '+' (ctx:VxV) CHECK: spaces preferred around that '-' (ctx:VxV) The kernel coding style prefers spaces around binary operators for better readability. Signed-off-by: Tabrez Ahmed <tabreztalks@gmail.com> Reviewed-by: Ethan Tidmore <ethantidmore06@gmail.com> Link: https://patch.msgid.link/20260208051341.38631-1-tabreztalks@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f80760f5fc
commit
94c1e3abce
@@ -1339,7 +1339,7 @@ u32 rtw_BIP_verify(struct adapter *padapter, u8 *precvframe)
|
||||
goto BIP_exit;
|
||||
|
||||
/* MIC field should be last 8 bytes of packet (packet without FCS) */
|
||||
if (!memcmp(mic, pframe+pattrib->pkt_len-8, 8)) {
|
||||
if (!memcmp(mic, pframe + pattrib->pkt_len - 8, 8)) {
|
||||
pmlmeext->mgnt_80211w_IPN_rx = temp_ipn;
|
||||
res = _SUCCESS;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user