lkml.org 
[lkml]   [2021]   [Mar]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 34/40] staging: rtl8723bs: replace RT_TRACE with public printk wrappers in os_dep/ioctl_cfg80211.c
    Date
    replace private macro RT_TRACE for tracing with in-kernel
    pr_* printk wrappers

    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    ---
    drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c | 14 +++++++++-----
    1 file changed, 9 insertions(+), 5 deletions(-)

    diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
    index 260d9fa739ef..6df2f1e12bd3 100644
    --- a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
    +++ b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
    @@ -875,7 +875,7 @@ static int rtw_cfg80211_set_encryption(struct net_device *dev, struct ieee_param

    if (strcmp(param->u.crypt.alg, "WEP") == 0)
    {
    - RT_TRACE(_module_rtl871x_ioctl_os_c, _drv_err_, ("wpa_set_encryption, crypt.alg = WEP\n"));
    + pr_err("%s wpa_set_encryption, crypt.alg = WEP\n", DRIVER_PREFIX);
    DBG_8192C("wpa_set_encryption, crypt.alg = WEP\n");

    wep_key_idx = param->u.crypt.idx;
    @@ -1797,7 +1797,7 @@ static int rtw_cfg80211_set_wpa_ie(struct adapter *padapter, u8 *pie, size_t iel
    }

    if (ielen < RSN_HEADER_LEN) {
    - RT_TRACE(_module_rtl871x_ioctl_os_c, _drv_err_, ("Ie len too short %ld\n", ielen));
    + pr_err("%s Ie len too short %ld\n", DRIVER_PREFIX, ielen);
    ret = -1;
    goto exit;
    }
    @@ -1901,9 +1901,13 @@ static int rtw_cfg80211_set_wpa_ie(struct adapter *padapter, u8 *pie, size_t iel
    /* check_fwstate(&padapter->mlmepriv, WIFI_UNDER_WPS) == true) */
    rtw_hal_set_hwreg(padapter, HW_VAR_OFF_RCR_AM, null_addr);

    - RT_TRACE(_module_rtl871x_ioctl_os_c, _drv_info_,
    - ("rtw_set_wpa_ie: pairwise_cipher = 0x%08x padapter->securitypriv.ndisencryptstatus =%d padapter->securitypriv.ndisauthtype =%d\n",
    - pairwise_cipher, padapter->securitypriv.ndisencryptstatus, padapter->securitypriv.ndisauthtype));
    + pr_info("%s rtw_set_wpa_ie: pairwise_cipher = 0x%08x "
    + "padapter->securitypriv.ndisencryptstatus =%d "
    + "padapter->securitypriv.ndisauthtype =%d\n",
    + DRIVER_PREFIX,
    + pairwise_cipher,
    + padapter->securitypriv.ndisencryptstatus,
    + padapter->securitypriv.ndisauthtype);

    exit:
    kfree(buf);
    --
    2.20.1
    \
     
     \ /
      Last update: 2021-03-31 11:43    [W:4.757 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site