replace private macro RT_TRACE for tracing with in-kernel
pr_* printk wrappers

Signed-off-by: Fabio Aiuto <[email protected]>
---
 drivers/staging/rtl8723bs/core/rtw_sta_mgt.c | 45 ++++++++++----------
 1 file changed, 22 insertions(+), 23 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c 
b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
index f96dd0b40e04..7febeff7308d 100644
--- a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
+++ b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
@@ -216,10 +216,11 @@ struct    sta_info *rtw_alloc_stainfo(struct      
sta_priv *pstapriv, u8 *hwaddr)
 
                index = wifi_mac_hash(hwaddr);
 
-               RT_TRACE(_module_rtl871x_sta_mgt_c_, _drv_info_, 
("rtw_alloc_stainfo: index  = %x", index));
+               pr_info("%s %s: index  = %x", DRIVER_PREFIX, __func__, index);
 
                if (index >= NUM_STA) {
-                       RT_TRACE(_module_rtl871x_sta_mgt_c_, _drv_err_, ("ERROR 
=> rtw_alloc_stainfo: index >= NUM_STA"));
+                       pr_err("%s ERROR => %s: index >= NUM_STA",
+                              DRIVER_PREFIX, __func__);
                        spin_unlock_bh(&(pstapriv->sta_hash_lock));
                        psta = NULL;
                        goto exit;
@@ -242,16 +243,15 @@ struct    sta_info *rtw_alloc_stainfo(struct      
sta_priv *pstapriv, u8 *hwaddr)
                for (i = 0; i < 16; i++)
                        memcpy(&psta->sta_recvpriv.rxcache.tid_rxseq[i], 
&wRxSeqInitialValue, 2);
 
-               RT_TRACE(_module_rtl871x_sta_mgt_c_, _drv_info_,
-                        ("alloc number_%d stainfo  with hwaddr = %x %x %x %x 
%x %x \n",
-                         pstapriv->asoc_sta_count,
-                         hwaddr[0],
-                         hwaddr[1],
-                         hwaddr[2],
-                         hwaddr[3],
-                         hwaddr[4],
-                         hwaddr[5])
-               );
+               pr_info("%s alloc number_%d stainfo  with hwaddr = %x %x %x %x 
%x %x\n",
+                       DRIVER_PREFIX,
+                       pstapriv->asoc_sta_count,
+                       hwaddr[0],
+                       hwaddr[1],
+                       hwaddr[2],
+                       hwaddr[3],
+                       hwaddr[4],
+                       hwaddr[5]);
 
                init_addba_retry_timer(pstapriv->padapter, psta);
 
@@ -363,16 +363,15 @@ u32 rtw_free_stainfo(struct adapter *padapter, struct 
sta_info *psta)
        spin_unlock_bh(&pxmitpriv->lock);
 
        list_del_init(&psta->hash_list);
-       RT_TRACE(_module_rtl871x_sta_mgt_c_, _drv_err_,
-                ("\n free number_%d stainfo  with hwaddr = 0x%.2x 0x%.2x 
0x%.2x 0x%.2x 0x%.2x 0x%.2x \n",
-                 pstapriv->asoc_sta_count,
-                 psta->hwaddr[0],
-                 psta->hwaddr[1],
-                 psta->hwaddr[2],
-                 psta->hwaddr[3],
-                 psta->hwaddr[4],
-                 psta->hwaddr[5])
-       );
+       pr_err("%s free number_%d stainfo  with hwaddr = 0x%.2x 0x%.2x 0x%.2x 
0x%.2x 0x%.2x 0x%.2x\n",
+              DRIVER_PREFIX,
+              pstapriv->asoc_sta_count,
+              psta->hwaddr[0],
+              psta->hwaddr[1],
+              psta->hwaddr[2],
+              psta->hwaddr[3],
+              psta->hwaddr[4],
+              psta->hwaddr[5]);
        pstapriv->asoc_sta_count--;
 
        /*  re-init sta_info; 20061114 will be init in alloc_stainfo */
@@ -543,7 +542,7 @@ u32 rtw_init_bcmc_stainfo(struct adapter *padapter)
 
        if (!psta) {
                res = _FAIL;
-               RT_TRACE(_module_rtl871x_sta_mgt_c_, _drv_err_, 
("rtw_alloc_stainfo fail"));
+               pr_err("%s rtw_alloc_stainfo fail", DRIVER_PREFIX);
                goto exit;
        }
 
-- 
2.20.1

Reply via email to