diff options
author | Ping-Ke Shih <pkshih@realtek.com> | 2024-04-18 03:29:16 +0300 |
---|---|---|
committer | Ping-Ke Shih <pkshih@realtek.com> | 2024-04-22 04:34:31 +0300 |
commit | 8cb090b7006889b622e916c353ce07d93fbd7baa (patch) | |
tree | 3fb3c9ea956a5c82ac3f661b4daa37140f84682f /drivers/net/wireless/realtek/rtw88/debug.h | |
parent | 0a548ecac7b9f148269340eff90fa06aa7aac876 (diff) | |
download | linux-8cb090b7006889b622e916c353ce07d93fbd7baa.tar.xz |
wifi: rtw88: suppress messages of failed to flush queue
Driver throws messages when scanning with a lot of traffic, because packets
in TX buffer can not be transmitted in time. Since this is a common
occurrence, change them to debug message with special debug mask that
developers can turn on this mask by default for further analysis.
Cc: Lewis Robbins <lewis.robbins2@gmail.com>
Tested-by: Lewis Robbins <lewis.robbins2@gmail.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://msgid.link/20240418002916.5965-1-pkshih@realtek.com
Diffstat (limited to 'drivers/net/wireless/realtek/rtw88/debug.h')
-rw-r--r-- | drivers/net/wireless/realtek/rtw88/debug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/realtek/rtw88/debug.h b/drivers/net/wireless/realtek/rtw88/debug.h index f20c0471c82a..eb69006c463e 100644 --- a/drivers/net/wireless/realtek/rtw88/debug.h +++ b/drivers/net/wireless/realtek/rtw88/debug.h @@ -26,6 +26,7 @@ enum rtw_debug_mask { RTW_DBG_STATE = 0x00020000, RTW_DBG_SDIO = 0x00040000, + RTW_DBG_UNEXP = 0x80000000, RTW_DBG_ALL = 0xffffffff }; |