|
@@ -1121,7 +1121,7 @@ dump_dp_hex_trace(char *prepend_str, uint8_t *inbuf, uint8_t inbuf_len)
|
|
|
char *outbuf_ptr = outbuf;
|
|
|
int outbytes_written = 0;
|
|
|
|
|
|
- qdf_mem_set(outbuf, 0, sizeof(outbuf));
|
|
|
+ qdf_mem_zero(outbuf, sizeof(outbuf));
|
|
|
do {
|
|
|
outbytes_written += scnprintf(outbuf_ptr,
|
|
|
BUFFER_SIZE - outbytes_written,
|
|
@@ -1424,7 +1424,7 @@ static void qdf_dp_fill_record_data
|
|
|
uint8_t *rec_data = rec->data;
|
|
|
uint8_t data_to_copy = 0;
|
|
|
|
|
|
- qdf_mem_set(rec_data, QDF_DP_TRACE_RECORD_SIZE, 0);
|
|
|
+ qdf_mem_zero(rec_data, QDF_DP_TRACE_RECORD_SIZE);
|
|
|
|
|
|
/* copy meta data */
|
|
|
if (meta_data) {
|
|
@@ -1846,7 +1846,7 @@ void qdf_dp_display_mgmt_pkt(struct qdf_dp_trace_record_s *record,
|
|
|
struct qdf_dp_trace_mgmt_buf *buf =
|
|
|
(struct qdf_dp_trace_mgmt_buf *)record->data;
|
|
|
|
|
|
- qdf_mem_set(prepend_str, 0, sizeof(prepend_str));
|
|
|
+ qdf_mem_zero(prepend_str, sizeof(prepend_str));
|
|
|
loc = qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
|
|
|
index, info, record);
|
|
|
|
|
@@ -1887,7 +1887,7 @@ void qdf_dp_display_event_record(struct qdf_dp_trace_record_s *record,
|
|
|
struct qdf_dp_trace_event_buf *buf =
|
|
|
(struct qdf_dp_trace_event_buf *)record->data;
|
|
|
|
|
|
- qdf_mem_set(prepend_str, 0, sizeof(prepend_str));
|
|
|
+ qdf_mem_zero(prepend_str, sizeof(prepend_str));
|
|
|
qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
|
|
|
index, info, record);
|
|
|
|
|
@@ -1939,7 +1939,7 @@ void qdf_dp_display_proto_pkt(struct qdf_dp_trace_record_s *record,
|
|
|
struct qdf_dp_trace_proto_buf *buf =
|
|
|
(struct qdf_dp_trace_proto_buf *)record->data;
|
|
|
|
|
|
- qdf_mem_set(prepend_str, 0, sizeof(prepend_str));
|
|
|
+ qdf_mem_zero(prepend_str, sizeof(prepend_str));
|
|
|
loc = qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
|
|
|
index, info, record);
|
|
|
DPTRACE_PRINT("%s [%d] [%s] SA: "
|
|
@@ -1992,7 +1992,7 @@ void qdf_dp_display_ptr_record(struct qdf_dp_trace_record_s *record,
|
|
|
(record->code == QDF_DP_TRACE_LI_DP_FREE_PACKET_PTR_RECORD))
|
|
|
is_free_pkt_ptr_record = true;
|
|
|
|
|
|
- qdf_mem_set(prepend_str, 0, sizeof(prepend_str));
|
|
|
+ qdf_mem_zero(prepend_str, sizeof(prepend_str));
|
|
|
loc = qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
|
|
|
index, info, record);
|
|
|
|
|
@@ -2074,7 +2074,7 @@ void qdf_dp_display_record(struct qdf_dp_trace_record_s *record,
|
|
|
pdev_id == record->pdev_id))
|
|
|
return;
|
|
|
|
|
|
- qdf_mem_set(prepend_str, 0, sizeof(prepend_str));
|
|
|
+ qdf_mem_zero(prepend_str, sizeof(prepend_str));
|
|
|
loc = qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
|
|
|
index, info, record);
|
|
|
|
|
@@ -2106,7 +2106,7 @@ qdf_dp_display_data_pkt_record(struct qdf_dp_trace_record_s *record,
|
|
|
struct qdf_dp_trace_data_buf *buf =
|
|
|
(struct qdf_dp_trace_data_buf *)record->data;
|
|
|
|
|
|
- qdf_mem_set(prepend_str, 0, sizeof(prepend_str));
|
|
|
+ qdf_mem_zero(prepend_str, sizeof(prepend_str));
|
|
|
|
|
|
loc = qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
|
|
|
rec_index, info, record);
|