staging: rtl8188eu: clear alignment style issues
authorMichael Straube <straube.linux@gmail.com>
Thu, 23 Jul 2020 07:52:42 +0000 (09:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jul 2020 08:31:45 +0000 (10:31 +0200)
Clear checkpatch alignment style issues in rtl8188eu_recv.c.
CHECK: Alignment should match open parenthesis

The file is now checkpatch clean.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20200723075243.21924-1-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/rtl8188eu_recv.c

index 1cf8cff9a2a4d9416ed15e34974ad910b15c3d9f..ab8313cf5bf03b0c12b59dec36a03c89b9c1cee3 100644 (file)
@@ -33,7 +33,7 @@ int   rtw_hal_init_recv_priv(struct adapter *padapter)
        if (!precvpriv->precv_buf) {
                res = _FAIL;
                RT_TRACE(_module_rtl871x_recv_c_, _drv_err_,
-                               ("alloc recv_buf fail!\n"));
+                        ("alloc recv_buf fail!\n"));
                goto exit;
        }
        precvbuf = precvpriv->precv_buf;
@@ -54,11 +54,11 @@ int rtw_hal_init_recv_priv(struct adapter *padapter)
 
                for (i = 0; i < NR_PREALLOC_RECV_SKB; i++) {
                        pskb = __netdev_alloc_skb(padapter->pnetdev,
-                                       MAX_RECVBUF_SZ, GFP_KERNEL);
+                                                 MAX_RECVBUF_SZ, GFP_KERNEL);
                        if (pskb) {
                                kmemleak_not_leak(pskb);
                                skb_queue_tail(&precvpriv->free_recv_skb_queue,
-                                               pskb);
+                                              pskb);
                        }
                        pskb = NULL;
                }
@@ -88,7 +88,7 @@ void rtw_hal_free_recv_priv(struct adapter *padapter)
 
        if (skb_queue_len(&precvpriv->free_recv_skb_queue))
                DBG_88E(KERN_WARNING "free_recv_skb_queue not empty, %d\n",
-                               skb_queue_len(&precvpriv->free_recv_skb_queue));
+                       skb_queue_len(&precvpriv->free_recv_skb_queue));
 
        skb_queue_purge(&precvpriv->free_recv_skb_queue);
 }