Commit 265b8e5f authored by Marcus Farkas's avatar Marcus Farkas Committed by Greg Kroah-Hartman

staging: rtl8712: fix unnecessary line continuations

This commit fixes the following checkpatch warning:

rtl8712/rtl871x_security.c
    - 1178: WARNING: Avoid unnecessary line continuations
Signed-off-by: default avatarMarcus Farkas <marcus.farkas@finitebox.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0ac07ce0
...@@ -1178,7 +1178,7 @@ u32 r8712_aes_encrypt(struct _adapter *padapter, u8 *pxmitframe) ...@@ -1178,7 +1178,7 @@ u32 r8712_aes_encrypt(struct _adapter *padapter, u8 *pxmitframe)
prwskeylen = 16; prwskeylen = 16;
for (curfragnum = 0; curfragnum < pattrib->nr_frags; for (curfragnum = 0; curfragnum < pattrib->nr_frags;
curfragnum++) { curfragnum++) {
if ((curfragnum + 1) == pattrib->nr_frags) {\ if ((curfragnum + 1) == pattrib->nr_frags) {
length = pattrib->last_txcmdsz - length = pattrib->last_txcmdsz -
pattrib->hdrlen - pattrib->hdrlen -
pattrib->iv_len - pattrib->iv_len -
......
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