Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/rtw_mlme_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -2151,12 +2151,12 @@ unsigned int OnAuth(_adapter *padapter, union recv_frame *precv_frame)
rtw_list_delete(&pstat->asoc_list);
pstapriv->asoc_list_cnt--;
if (pstat->expire_to > 0)
;/* TODO: STA re_auth within expire_to */
{ } /* TODO: STA re_auth within expire_to */
}
_exit_critical_bh(&pstapriv->asoc_list_lock, &irqL);

if (seq == 1)
; /* TODO: STA re_auth and auth timeout */
{ } /* TODO: STA re_auth and auth timeout */

}
}
Expand Down
2 changes: 1 addition & 1 deletion hal/phydm/halrf/halrf_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static __inline void RF_DBG(struct dm_struct *dm, int comp, char *fmt, ...)
{
}
#else
#define RF_DBG(dm, comp, fmt, args...)
#define RF_DBG(dm, comp, fmt, args...) do {} while (0)
#endif

#endif /*#if DBG*/
Expand Down
2 changes: 1 addition & 1 deletion hal/phydm/phydm_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -3268,7 +3268,7 @@ static void phydm_dump_bb_reg(void *dm_void, u32 *_used, char *output, u32 *_out
#if (ODM_IC_11AC_SERIES_SUPPORT)
phydm_dump_bb_reg_ac(dm, &used, output, &out_len);
#else
;
{ }
#endif

*_used = used;
Expand Down
4 changes: 2 additions & 2 deletions hal/phydm/phydm_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ static __inline void PHYDM_DBG_F(PDM_ODM_T dm, int comp, char *fmt, ...)

#elif defined(DM_ODM_CE_MAC80211_V2)

#define PHYDM_DBG(dm, comp, fmt, args...)
#define PHYDM_DBG(dm, comp, fmt, args...) do {} while (0)
#define PHYDM_DBG_F(dm, comp, fmt, args...)
#define PHYDM_PRINT_ADDR(dm, comp, title_str, addr)

Expand Down Expand Up @@ -295,7 +295,7 @@ static __inline void PHYDM_DBG_F(struct dm_struct *dm, int comp, char *fmt, ...)
{
}
#else
#define PHYDM_DBG(dm, comp, fmt, args...)
#define PHYDM_DBG(dm, comp, fmt, args...) do {} while (0)
#define PHYDM_DBG_F(dm, comp, fmt, args...)
#endif
#define PHYDM_PRINT_ADDR(dm, comp, title_str, ptr)
Expand Down
2 changes: 1 addition & 1 deletion include/rtw_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ extern uint rtw_drv_log_level;
#ifdef CONFIG_DBG_COUNTER
#define DBG_COUNTER(counter) counter++
#else
#define DBG_COUNTER(counter)
#define DBG_COUNTER(counter) do {} while (0)
#endif

void dump_drv_version(void *sel);
Expand Down