qcacmn: Increase debug level of mesh prints

Increase debug level of mesh prints as in current debug level lot of
prints are coming.

Change-Id: Ic584c1bb17415521b66e656274e7283279c8cc61
CRs-Fixed: 2188324
This commit is contained in:
Venkateswara Swamy Bandaru
2018-02-12 15:37:14 +05:30
committed by snandini
parent 1de7baec7e
commit 37a3a456f6
2 changed files with 7 additions and 4 deletions

View File

@@ -1560,13 +1560,16 @@ remove_meta_hdr:
return NULL;
}
QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
"%s , Meta hdr %0x %0x %0x %0x %0x to_fw %d\n",
QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_HIGH,
"%s , Meta hdr %0x %0x %0x %0x %0x %0x"
" tid %d to_fw %d\n",
__func__, msdu_info->meta_data[0],
msdu_info->meta_data[1],
msdu_info->meta_data[2],
msdu_info->meta_data[3],
msdu_info->meta_data[4], msdu_info->exception_fw);
msdu_info->meta_data[4],
msdu_info->meta_data[5],
msdu_info->tid, msdu_info->exception_fw);
return nbuf;
}