staging: rtl8192e: remove unnecesasry ftrace-like logging
Fixed Check: Remove unnecessary ftrace-like logging by simply deleting that statement as we have other modes of logging like ftrace. Reported by checkpatch. Signed-off-by: zhaoxiao <zhaoxiao@uniontech.com> Link: https://lore.kernel.org/r/20210430122826.9899-1-zhaoxiao@uniontech.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5e7106f6c9
commit
66d708e655
|
@ -730,7 +730,6 @@ EXPORT_SYMBOL(rtllib_act_scanning);
|
|||
/* called with ieee->lock held */
|
||||
static void rtllib_start_scan(struct rtllib_device *ieee)
|
||||
{
|
||||
RT_TRACE(COMP_DBG, "===>%s()\n", __func__);
|
||||
if (ieee->rtllib_ips_leave_wq != NULL)
|
||||
ieee->rtllib_ips_leave_wq(ieee->dev);
|
||||
|
||||
|
|
|
@ -293,8 +293,6 @@ int rtllib_wx_set_encode(struct rtllib_device *ieee,
|
|||
int i, key, key_provided, len;
|
||||
struct lib80211_crypt_data **crypt;
|
||||
|
||||
netdev_dbg(ieee->dev, "%s()\n", __func__);
|
||||
|
||||
key = erq->flags & IW_ENCODE_INDEX;
|
||||
if (key) {
|
||||
if (key > NUM_WEP_KEYS)
|
||||
|
@ -463,8 +461,6 @@ int rtllib_wx_get_encode(struct rtllib_device *ieee,
|
|||
int len, key;
|
||||
struct lib80211_crypt_data *crypt;
|
||||
|
||||
netdev_dbg(ieee->dev, "%s()\n", __func__);
|
||||
|
||||
if (ieee->iw_mode == IW_MODE_MONITOR)
|
||||
return -1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue