remove all RT_TRACE logs

Signed-off-by: Fabio Aiuto <[email protected]>
---
 drivers/staging/rtl8723bs/os_dep/os_intfs.c | 45 ---------------------
 1 file changed, 45 deletions(-)

diff --git a/drivers/staging/rtl8723bs/os_dep/os_intfs.c 
b/drivers/staging/rtl8723bs/os_dep/os_intfs.c
index 405aa95af579..902ea040da25 100644
--- a/drivers/staging/rtl8723bs/os_dep/os_intfs.c
+++ b/drivers/staging/rtl8723bs/os_dep/os_intfs.c
@@ -479,8 +479,6 @@ struct net_device *rtw_init_netdev(struct adapter 
*old_padapter)
        struct adapter *padapter;
        struct net_device *pnetdev;
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+init_net_dev\n"));
-
        if (old_padapter)
                pnetdev = rtw_alloc_etherdev_with_old_priv(sizeof(struct 
adapter), (void *)old_padapter);
        else
@@ -529,7 +527,6 @@ u32 rtw_start_drv_threads(struct adapter *padapter)
 {
        u32 _status = _SUCCESS;
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+rtw_start_drv_threads\n"));
        padapter->xmitThread = kthread_run(rtw_xmit_thread, padapter, 
"RTW_XMIT_THREAD");
        if (IS_ERR(padapter->xmitThread))
                _status = _FAIL;
@@ -546,14 +543,11 @@ u32 rtw_start_drv_threads(struct adapter *padapter)
 
 void rtw_stop_drv_threads(struct adapter *padapter)
 {
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+rtw_stop_drv_threads\n"));
-
        rtw_stop_cmd_thread(padapter);
 
        /*  Below is to termindate tx_thread... */
        complete(&padapter->xmitpriv.xmit_comp);
        wait_for_completion(&padapter->xmitpriv.terminate_xmitthread_comp);
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("\n drv_halt: 
rtw_xmit_thread can be terminated !\n"));
 
        rtw_hal_stop_thread(padapter);
 }
@@ -697,14 +691,11 @@ u8 rtw_init_drv_sw(struct adapter *padapter)
 {
        u8 ret8 = _SUCCESS;
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+rtw_init_drv_sw\n"));
-
        rtw_init_default_value(padapter);
 
        rtw_init_hal_com_default_value(padapter);
 
        if (rtw_init_cmd_priv(&padapter->cmdpriv)) {
-               RT_TRACE(_module_os_intfs_c_, _drv_err_, ("\n Can't init 
cmd_priv\n"));
                ret8 = _FAIL;
                goto exit;
        }
@@ -712,14 +703,12 @@ u8 rtw_init_drv_sw(struct adapter *padapter)
        padapter->cmdpriv.padapter = padapter;
 
        if (rtw_init_evt_priv(&padapter->evtpriv)) {
-               RT_TRACE(_module_os_intfs_c_, _drv_err_, ("\n Can't init 
evt_priv\n"));
                ret8 = _FAIL;
                goto exit;
        }
 
 
        if (rtw_init_mlme_priv(padapter) == _FAIL) {
-               RT_TRACE(_module_os_intfs_c_, _drv_err_, ("\n Can't init 
mlme_priv\n"));
                ret8 = _FAIL;
                goto exit;
        }
@@ -760,29 +749,21 @@ u8 rtw_init_drv_sw(struct adapter *padapter)
 
 exit:
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-rtw_init_drv_sw\n"));
-
        return ret8;
 }
 
 void rtw_cancel_all_timer(struct adapter *padapter)
 {
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+rtw_cancel_all_timer\n"));
-
        del_timer_sync(&padapter->mlmepriv.assoc_timer);
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("rtw_cancel_all_timer:cancel 
association timer complete!\n"));
 
        del_timer_sync(&padapter->mlmepriv.scan_to_timer);
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("rtw_cancel_all_timer:cancel 
scan_to_timer!\n"));
 
        del_timer_sync(&padapter->mlmepriv.dynamic_chk_timer);
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("rtw_cancel_all_timer:cancel 
dynamic_chk_timer!\n"));
 
        del_timer_sync(&(adapter_to_pwrctl(padapter)->pwr_state_check_timer));
 
        del_timer_sync(&padapter->mlmepriv.set_scan_deny_timer);
        rtw_clear_scan_deny(padapter);
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("rtw_cancel_all_timer:cancel 
set_scan_deny_timer!\n"));
 
        del_timer_sync(&padapter->recvpriv.signal_stat_timer);
 
@@ -792,8 +773,6 @@ void rtw_cancel_all_timer(struct adapter *padapter)
 
 u8 rtw_free_drv_sw(struct adapter *padapter)
 {
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("==>rtw_free_drv_sw"));
-
        free_mlme_ext_priv(&padapter->mlmeextpriv);
 
        rtw_free_cmd_priv(&padapter->cmdpriv);
@@ -816,8 +795,6 @@ u8 rtw_free_drv_sw(struct adapter *padapter)
 
        rtw_hal_free_data(padapter);
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("<==rtw_free_drv_sw\n"));
-
        /* free the old_pnetdev */
        if (padapter->rereg_nd_name_priv.old_pnetdev) {
                free_netdev(padapter->rereg_nd_name_priv.old_pnetdev);
@@ -828,8 +805,6 @@ u8 rtw_free_drv_sw(struct adapter *padapter)
        if (padapter->pbuddy_adapter)
                padapter->pbuddy_adapter->pbuddy_adapter = NULL;
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-rtw_free_drv_sw\n"));
-
        return _SUCCESS;
 }
 
@@ -879,7 +854,6 @@ static int _netdev_open(struct net_device *pnetdev)
        struct adapter *padapter = rtw_netdev_priv(pnetdev);
        struct pwrctrl_priv *pwrctrlpriv = adapter_to_pwrctl(padapter);
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+871x_drv - dev_open\n"));
        DBG_871X("+871x_drv - drv_open, bup =%d\n", padapter->bup);
 
        padapter->netif_up = true;
@@ -896,7 +870,6 @@ static int _netdev_open(struct net_device *pnetdev)
 
                status = rtw_hal_init(padapter);
                if (status == _FAIL) {
-                       RT_TRACE(_module_os_intfs_c_, _drv_err_, 
("rtl871x_hal_init(): Can't init h/w!\n"));
                        goto netdev_open_error;
                }
 
@@ -927,7 +900,6 @@ static int _netdev_open(struct net_device *pnetdev)
 
 netdev_open_normal_process:
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-871x_drv - dev_open\n"));
        DBG_871X("-871x_drv - drv_open, bup =%d\n", padapter->bup);
 
        return 0;
@@ -939,7 +911,6 @@ static int _netdev_open(struct net_device *pnetdev)
        netif_carrier_off(pnetdev);
        rtw_netif_stop_queue(pnetdev);
 
-       RT_TRACE(_module_os_intfs_c_, _drv_err_, ("-871x_drv - dev_open, 
fail!\n"));
        DBG_871X("-871x_drv - drv_open fail, bup =%d\n", padapter->bup);
 
        return (-1);
@@ -978,7 +949,6 @@ static int  ips_netdrv_open(struct adapter *padapter)
 
        status = rtw_hal_init(padapter);
        if (status == _FAIL) {
-               RT_TRACE(_module_os_intfs_c_, _drv_err_, ("ips_netdrv_open(): 
Can't init h/w!\n"));
                goto netdev_open_error;
        }
 
@@ -1050,8 +1020,6 @@ static int netdev_close(struct net_device *pnetdev)
        struct adapter *padapter = rtw_netdev_priv(pnetdev);
        struct pwrctrl_priv *pwrctl = adapter_to_pwrctl(padapter);
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("+871x_drv - drv_close\n"));
-
        if (pwrctl->bInternalAutoSuspend) {
                /* rtw_pwr_wakeup(padapter); */
                if (pwrctl->rf_pwrstate == rf_off)
@@ -1092,7 +1060,6 @@ static int netdev_close(struct net_device *pnetdev)
        rtw_scan_abort(padapter);
        adapter_wdev_data(padapter)->bandroid_scan = false;
 
-       RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-871x_drv - drv_close\n"));
        DBG_871X("-871x_drv - drv_close, bup =%d\n", padapter->bup);
 
        return 0;
@@ -1113,8 +1080,6 @@ void rtw_dev_unload(struct adapter *padapter)
        struct cmd_priv *pcmdpriv = &padapter->cmdpriv;
        u8 cnt = 0;
 
-       RT_TRACE(_module_hci_intfs_c_, _drv_notice_, ("+%s\n", __func__));
-
        if (padapter->bup) {
 
                padapter->bDriverStopped = true;
@@ -1124,8 +1089,6 @@ void rtw_dev_unload(struct adapter *padapter)
                if (padapter->intf_stop)
                        padapter->intf_stop(padapter);
 
-               RT_TRACE(_module_hci_intfs_c_, _drv_notice_, ("@ 
rtw_dev_unload: stop intf complete!\n"));
-
                if (!pwrctl->bInternalAutoSuspend)
                        rtw_stop_drv_threads(padapter);
 
@@ -1140,8 +1103,6 @@ void rtw_dev_unload(struct adapter *padapter)
                        }
                }
 
-               RT_TRACE(_module_hci_intfs_c_, _drv_notice_, ("@ %s: stop 
thread complete!\n", __func__));
-
                /* check the status of IPS */
                if (rtw_hal_check_ips_status(padapter) || pwrctl->rf_pwrstate 
== rf_off) {
                        /* check HW status and SW state */
@@ -1160,17 +1121,13 @@ void rtw_dev_unload(struct adapter *padapter)
 
                        padapter->bSurpriseRemoved = true;
                }
-               RT_TRACE(_module_hci_intfs_c_, _drv_notice_,
-                        ("@ %s: deinit hal complete!\n", __func__));
 
                padapter->bup = false;
 
        } else {
-               RT_TRACE(_module_hci_intfs_c_, _drv_notice_, ("%s: bup 
==false\n", __func__));
                DBG_871X("%s: bup ==false\n", __func__);
        }
 
-       RT_TRACE(_module_hci_intfs_c_, _drv_notice_, ("-%s\n", __func__));
 }
 
 static int rtw_suspend_free_assoc_resource(struct adapter *padapter)
@@ -1329,14 +1286,12 @@ static int rtw_resume_process_normal(struct adapter 
*padapter)
        /* if (sdio_init(adapter_to_dvobj(padapter)) != _SUCCESS) */
        if ((padapter->intf_init) && 
(padapter->intf_init(adapter_to_dvobj(padapter)) != _SUCCESS)) {
                ret = -1;
-               RT_TRACE(_module_hci_intfs_c_, _drv_err_, ("%s: initialize SDIO 
Failed!!\n", __func__));
                goto exit;
        }
        rtw_hal_disable_interrupt(padapter);
        /* if (sdio_alloc_irq(adapter_to_dvobj(padapter)) != _SUCCESS) */
        if ((padapter->intf_alloc_irq) && 
(padapter->intf_alloc_irq(adapter_to_dvobj(padapter)) != _SUCCESS)) {
                ret = -1;
-               RT_TRACE(_module_hci_intfs_c_, _drv_err_, ("%s: sdio_alloc_irq 
Failed!!\n", __func__));
                goto exit;
        }
 
-- 
2.20.1

Reply via email to