mirror of https://gitee.com/openkylin/linux.git
staging: rtl8723bs: remove unused code blocks guarded by DEBUG_RTL871X
remove unused code blocks guarded by never set DEBUG_RTL871X Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com> Link: https://lore.kernel.org/r/c7b590b7ae7fad08cd913462ab385db9230ede4d.1618064274.git.fabioaiuto83@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fa50dda745
commit
0a62cc7a5a
|
@ -12,41 +12,6 @@
|
|||
|
||||
u32 GlobalDebugLevel = _drv_err_;
|
||||
|
||||
#ifdef DEBUG_RTL871X
|
||||
|
||||
u64 GlobalDebugComponents = \
|
||||
_module_rtl871x_xmit_c_ |
|
||||
_module_xmit_osdep_c_ |
|
||||
_module_rtl871x_recv_c_ |
|
||||
_module_recv_osdep_c_ |
|
||||
_module_rtl871x_mlme_c_ |
|
||||
_module_mlme_osdep_c_ |
|
||||
_module_rtl871x_sta_mgt_c_ |
|
||||
_module_rtl871x_cmd_c_ |
|
||||
_module_cmd_osdep_c_ |
|
||||
_module_rtl871x_io_c_ |
|
||||
_module_io_osdep_c_ |
|
||||
_module_os_intfs_c_|
|
||||
_module_rtl871x_security_c_|
|
||||
_module_rtl871x_eeprom_c_|
|
||||
_module_hal_init_c_|
|
||||
_module_hci_hal_init_c_|
|
||||
_module_rtl871x_ioctl_c_|
|
||||
_module_rtl871x_ioctl_set_c_|
|
||||
_module_rtl871x_ioctl_query_c_|
|
||||
_module_rtl871x_pwrctrl_c_|
|
||||
_module_hci_intfs_c_|
|
||||
_module_hci_ops_c_|
|
||||
_module_hci_ops_os_c_|
|
||||
_module_rtl871x_ioctl_os_c|
|
||||
_module_rtl8712_cmd_c_|
|
||||
_module_hal_xmit_c_|
|
||||
_module_rtl8712_recv_c_ |
|
||||
_module_mp_ |
|
||||
_module_efuse_;
|
||||
|
||||
#endif /* DEBUG_RTL871X */
|
||||
|
||||
#include <rtw_version.h>
|
||||
|
||||
void dump_drv_version(void *sel)
|
||||
|
|
|
@ -4402,20 +4402,7 @@ static void process_80211d(struct adapter *padapter, struct wlan_bssid_ex *bssid
|
|||
}
|
||||
chplan_ap.Len = i;
|
||||
|
||||
#ifdef DEBUG_RTL871X
|
||||
i = 0;
|
||||
while ((i < chplan_ap.Len) && (chplan_ap.Channel[i] != 0)) {
|
||||
i++;
|
||||
}
|
||||
#endif
|
||||
|
||||
memcpy(chplan_sta, pmlmeext->channel_set, sizeof(chplan_sta));
|
||||
#ifdef DEBUG_RTL871X
|
||||
i = 0;
|
||||
while ((i < MAX_CHANNEL_NUM) && (chplan_sta[i].ChannelNum != 0)) {
|
||||
i++;
|
||||
}
|
||||
#endif
|
||||
|
||||
memset(pmlmeext->channel_set, 0, sizeof(pmlmeext->channel_set));
|
||||
chplan_new = pmlmeext->channel_set;
|
||||
|
@ -4543,13 +4530,6 @@ static void process_80211d(struct adapter *padapter, struct wlan_bssid_ex *bssid
|
|||
}
|
||||
|
||||
pmlmeext->update_channel_plan_by_ap_done = 1;
|
||||
|
||||
#ifdef DEBUG_RTL871X
|
||||
k = 0;
|
||||
while ((k < MAX_CHANNEL_NUM) && (chplan_new[k].ChannelNum != 0)) {
|
||||
k++;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/* If channel is used by AP, set channel scan type to active */
|
||||
|
|
Loading…
Reference in New Issue