summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8723bs/core/rtw_ap.c
diff options
context:
space:
mode:
authorFabio Aiuto <fabioaiuto83@gmail.com>2021-04-07 16:49:35 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-04-07 18:13:03 +0300
commitb4f27a06f6382b9d6f9f5cd8a6445b0af001a2a6 (patch)
treef2e598600c1127f3ee22257e519ccfc7b81fd910 /drivers/staging/rtl8723bs/core/rtw_ap.c
parentae31f4ed7e09fe2f8b01ce32091a57678849e2f8 (diff)
downloadlinux-b4f27a06f6382b9d6f9f5cd8a6445b0af001a2a6.tar.xz
staging: rtl8723bs: remove empty #ifdef blocks after DBG_871X removal
remove #ifdef and blocks #if defined() blocks left empty after DBG_871X removal. Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com> Link: https://lore.kernel.org/r/4e19eb1c71bc1d43d30c1b0a04851ab7ce528f36.1617802415.git.fabioaiuto83@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723bs/core/rtw_ap.c')
-rw-r--r--drivers/staging/rtl8723bs/core/rtw_ap.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_ap.c b/drivers/staging/rtl8723bs/core/rtw_ap.c
index e7712391a87d..015c1d74a92d 100644
--- a/drivers/staging/rtl8723bs/core/rtw_ap.c
+++ b/drivers/staging/rtl8723bs/core/rtw_ap.c
@@ -170,9 +170,6 @@ static void update_BCNTIM(struct adapter *padapter)
u8 chk_sta_is_alive(struct sta_info *psta);
u8 chk_sta_is_alive(struct sta_info *psta)
{
- #ifdef DBG_EXPIRATION_CHK
- #endif
-
sta_update_last_rx_pkts(psta);
return true;
@@ -194,8 +191,6 @@ void expire_timeout_chk(struct adapter *padapter)
plist = get_next(phead);
/* check auth_queue */
- #ifdef DBG_EXPIRATION_CHK
- #endif
while (phead != plist) {
psta = container_of(plist, struct sta_info, auth_list);
@@ -225,8 +220,6 @@ void expire_timeout_chk(struct adapter *padapter)
plist = get_next(phead);
/* check asoc_queue */
- #ifdef DBG_EXPIRATION_CHK
- #endif
while (phead != plist) {
psta = container_of(plist, struct sta_info, asoc_list);
plist = get_next(plist);