staging: rtl8188eu: remove all RT_TRACE calls from os_dep/recv_linux.c
authorPhillip Potter <phil@philpotter.co.uk>
Fri, 25 Jun 2021 00:07:38 +0000 (01:07 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Jun 2021 07:03:50 +0000 (09:03 +0200)
Remove all RT_TRACE calls from os_dep/recv_linux.c as this macro is
unnecessary, and these calls are dubious in terms of necessity.
Removing all calls will ultimately allow the removal of the macro
itself.

Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Link: https://lore.kernel.org/r/20210625000756.6313-6-phil@philpotter.co.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/os_dep/recv_linux.c

index a647cdc..3460619 100644 (file)
@@ -72,11 +72,8 @@ int rtw_recv_indicatepkt(struct adapter *padapter,
        pfree_recv_queue = &precvpriv->free_recv_queue;
 
        skb = precv_frame->pkt;
-       if (!skb) {
-               RT_TRACE(_module_recv_osdep_c_, _drv_err_,
-                        ("%s():skb == NULL something wrong!!!!\n", __func__));
+       if (!skb)
                goto _recv_indicatepkt_drop;
-       }
 
        if (check_fwstate(pmlmepriv, WIFI_AP_STATE)) {
                struct sk_buff *pskb2 = NULL;
@@ -124,9 +121,6 @@ _recv_indicatepkt_end:
 
        rtw_free_recvframe(precv_frame, pfree_recv_queue);
 
-       RT_TRACE(_module_recv_osdep_c_, _drv_info_,
-                ("\n %s :after netif_rx!!!!\n", __func__));
-
        return _SUCCESS;
 
 _recv_indicatepkt_drop: