qcacld-3.0: Remove some meaningless debug prints
The 11ax cap and oper IE presence debug printing in the following functions are not bringing any useful info for debugging: sir_convert_probe_req_frame2_struct sir_convert_probe_frame2_struct sir_convert_assoc_resp_frame2_struct so remove them to reduce driver log verbosity. Change-Id: I2afc96e39dbf5ae30ca1c6a3d803064ee018a8aa CRs-Fixed: 2781096
This commit is contained in:
@@ -2124,7 +2124,6 @@ sir_convert_probe_req_frame2_struct(struct mac_context *mac,
|
|||||||
if (pr.he_cap.present) {
|
if (pr.he_cap.present) {
|
||||||
qdf_mem_copy(&pProbeReq->he_cap, &pr.he_cap,
|
qdf_mem_copy(&pProbeReq->he_cap, &pr.he_cap,
|
||||||
sizeof(tDot11fIEhe_cap));
|
sizeof(tDot11fIEhe_cap));
|
||||||
pe_debug("11AX: HE cap IE present");
|
|
||||||
}
|
}
|
||||||
return QDF_STATUS_SUCCESS;
|
return QDF_STATUS_SUCCESS;
|
||||||
} /* End sir_convert_probe_req_frame2_struct. */
|
} /* End sir_convert_probe_req_frame2_struct. */
|
||||||
@@ -2595,12 +2594,10 @@ QDF_STATUS sir_convert_probe_frame2_struct(struct mac_context *mac,
|
|||||||
sizeof(tDot11fIEqcn_ie));
|
sizeof(tDot11fIEqcn_ie));
|
||||||
|
|
||||||
if (pr->he_cap.present) {
|
if (pr->he_cap.present) {
|
||||||
pe_debug("11AX: HE cap IE present");
|
|
||||||
qdf_mem_copy(&pProbeResp->he_cap, &pr->he_cap,
|
qdf_mem_copy(&pProbeResp->he_cap, &pr->he_cap,
|
||||||
sizeof(tDot11fIEhe_cap));
|
sizeof(tDot11fIEhe_cap));
|
||||||
}
|
}
|
||||||
if (pr->he_op.present) {
|
if (pr->he_op.present) {
|
||||||
pe_debug("11AX: HE operation IE present");
|
|
||||||
qdf_mem_copy(&pProbeResp->he_op, &pr->he_op,
|
qdf_mem_copy(&pProbeResp->he_op, &pr->he_op,
|
||||||
sizeof(tDot11fIEhe_op));
|
sizeof(tDot11fIEhe_op));
|
||||||
}
|
}
|
||||||
@@ -3279,12 +3276,10 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|||||||
qdf_mem_copy(&pAssocRsp->qcn_ie, &ar->qcn_ie,
|
qdf_mem_copy(&pAssocRsp->qcn_ie, &ar->qcn_ie,
|
||||||
sizeof(tDot11fIEqcn_ie));
|
sizeof(tDot11fIEqcn_ie));
|
||||||
if (ar->he_cap.present) {
|
if (ar->he_cap.present) {
|
||||||
pe_debug("11AX: HE cap IE present");
|
|
||||||
qdf_mem_copy(&pAssocRsp->he_cap, &ar->he_cap,
|
qdf_mem_copy(&pAssocRsp->he_cap, &ar->he_cap,
|
||||||
sizeof(tDot11fIEhe_cap));
|
sizeof(tDot11fIEhe_cap));
|
||||||
}
|
}
|
||||||
if (ar->he_op.present) {
|
if (ar->he_op.present) {
|
||||||
pe_debug("11AX: HE Operation IE present");
|
|
||||||
qdf_mem_copy(&pAssocRsp->he_op, &ar->he_op,
|
qdf_mem_copy(&pAssocRsp->he_op, &ar->he_op,
|
||||||
sizeof(tDot11fIEhe_op));
|
sizeof(tDot11fIEhe_op));
|
||||||
pe_debug("bss_clr %d def_pe %d part_bss_clr %d bss_col_dis %d",
|
pe_debug("bss_clr %d def_pe %d part_bss_clr %d bss_col_dis %d",
|
||||||
|
Reference in New Issue
Block a user