staging: rtl8188eu: cleanup alignment issue
authorMichael Straube <straube.linux@gmail.com>
Thu, 11 Oct 2018 19:57:07 +0000 (21:57 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 Oct 2018 11:32:38 +0000 (13:32 +0200)
Clear a 'Alignment should match open parenthesis'
checkpatch issue.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_xmit.c

index 07b6e68..4a2921d 100644 (file)
@@ -863,9 +863,9 @@ s32 rtw_txframes_pending(struct adapter *padapter)
        struct xmit_priv *pxmitpriv = &padapter->xmitpriv;
 
        return (!list_empty(&pxmitpriv->be_pending.queue) ||
-                       !list_empty(&pxmitpriv->bk_pending.queue) ||
-                       !list_empty(&pxmitpriv->vi_pending.queue) ||
-                       !list_empty(&pxmitpriv->vo_pending.queue));
+               !list_empty(&pxmitpriv->bk_pending.queue) ||
+               !list_empty(&pxmitpriv->vi_pending.queue) ||
+               !list_empty(&pxmitpriv->vo_pending.queue));
 }
 
 s32 rtw_txframes_sta_ac_pending(struct adapter *padapter, struct pkt_attrib *pattrib)