]> Git Repo - linux.git/commitdiff
Staging: rtl8723bs: rtw_xmit: fixed tabbing issue
authorAmos Gross <[email protected]>
Wed, 21 Apr 2021 12:07:31 +0000 (12:07 +0000)
committerGreg Kroah-Hartman <[email protected]>
Thu, 22 Apr 2021 08:43:22 +0000 (10:43 +0200)
Fixed warning from checkpatch for code block not being indented
correctly.

Signed-off-by: Amos Gross <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/rtl8723bs/core/rtw_xmit.c

index ec13d41c3b2c2bd441fcd91adc9b19deea3d19e6..bd3acdd7d75f6d3096c9f431d26bdd6f156113e2 100644 (file)
@@ -790,7 +790,7 @@ static s32 xmitframe_addmic(struct adapter *padapter, struct xmit_frame *pxmitfr
                                if (pframe[1]&2)  /* From Ds == 1 */
                                        rtw_secmicappend(&micdata, &pframe[24], 6);
                                else
-                               rtw_secmicappend(&micdata, &pframe[10], 6);
+                                       rtw_secmicappend(&micdata, &pframe[10], 6);
                        } else {        /* ToDS == 0 */
                                rtw_secmicappend(&micdata, &pframe[4], 6);   /* DA */
                                if (pframe[1]&2)  /* From Ds == 1 */
This page took 0.06284 seconds and 4 git commands to generate.