fix: reduce log level for aic8800

Signed-off-by: Han Gao <gaohan@iscas.ac.cn>
This commit is contained in:
Han Gao
2023-10-11 00:02:08 +08:00
committed by Han Gao
parent e04af8ab30
commit 3e8db613d4
2 changed files with 5 additions and 2 deletions

View File

@@ -15,7 +15,9 @@
#define DRV_AUTHOR "AICSemi"
#define DRV_VERS_MOD "1.0"
int aicwf_dbg_level_bsp = LOGERROR|LOGINFO|LOGDEBUG|LOGTRACE;
/* int aicwf_dbg_level_bsp = LOGERROR|LOGINFO|LOGDEBUG|LOGTRACE; */
int aicwf_dbg_level_bsp = LOGERROR;
module_param(aicwf_dbg_level_bsp, int, 0660);
static struct platform_device *aicbsp_pdev;

View File

@@ -502,7 +502,8 @@ static const int rwnx_hwq2uapsd[NL80211_NUM_ACS] = {
extern uint8_t scanning;
int aicwf_dbg_level = LOGERROR|LOGINFO|LOGDEBUG|LOGTRACE;
/* int aicwf_dbg_level = LOGERROR|LOGINFO|LOGDEBUG|LOGTRACE; */
int aicwf_dbg_level = LOGERROR;
module_param(aicwf_dbg_level, int, 0660);
int testmode = 0;
char aic_fw_path[200];