diff options
author | Fabio Aiuto <fabioaiuto83@gmail.com> | 2021-03-18 16:26:10 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-20 13:38:28 +0100 |
commit | 62a19328c4b5753ed087672c1415828748a59d97 (patch) | |
tree | 4cefb7d9a008e24a417c7212da3bb6acae124627 /drivers | |
parent | 0e9cd946307cfea75e7c4a3c82ab58e77d0d8a6f (diff) | |
download | linux-62a19328c4b5753ed087672c1415828748a59d97.tar.gz linux-62a19328c4b5753ed087672c1415828748a59d97.tar.bz2 linux-62a19328c4b5753ed087672c1415828748a59d97.zip |
staging: rtl8723bs: remove unnecessary logging in os_dep/wifi_regd.c
fix the following checkpatch.pl issues:
WARNING: Unnecessary ftrace-like logging - prefer using ftrace
153: FILE: drivers/staging/rtl8723bs/os_dep/wifi_regd.c:153:
+ DBG_8192C("%s\n", __func__);
Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/20210318152610.16758-16-fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/rtl8723bs/os_dep/wifi_regd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723bs/os_dep/wifi_regd.c b/drivers/staging/rtl8723bs/os_dep/wifi_regd.c index ee55893528b9..0084589499b9 100644 --- a/drivers/staging/rtl8723bs/os_dep/wifi_regd.c +++ b/drivers/staging/rtl8723bs/os_dep/wifi_regd.c @@ -150,7 +150,5 @@ void rtw_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) { struct rtw_regulatory *reg = NULL; - DBG_8192C("%s\n", __func__); - _rtw_reg_notifier_apply(wiphy, request, reg); } |