qcacmn: fix format specifier in qdf_dpt_dump_stats_debugfs

Fix proper format specifier for qdf_debugfs_printf in
qdf_dpt_dump_stats_debugfs.

Change-Id: I3d357cb677c6419e13c3c2333b43d4cae2f2df41
CRs-Fixed: 2717408
This commit is contained in:
Vevek Venkatesan
2020-06-24 17:13:05 +05:30
committed by nshrivas
parent d2c2a6aec6
commit d04ad531c8

View File

@@ -2852,26 +2852,27 @@ QDF_STATUS qdf_dpt_dump_stats_debugfs(qdf_debugfs_file_t file,
break;
case QDF_DP_TRACE_HDD_TX_TIMEOUT:
qdf_debugfs_printf(file, "DPT: %04d: %s %s\n",
i, p_record.time,
qdf_dp_code_to_string(p_record.code));
qdf_debugfs_printf(file, "%s: HDD TX Timeout\n");
qdf_debugfs_printf(
file, "DPT: %04d: %llu %s\n",
i, p_record.time,
qdf_dp_code_to_string(p_record.code));
qdf_debugfs_printf(file, "HDD TX Timeout\n");
break;
case QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT:
qdf_debugfs_printf(file, "%04d: %s %s\n",
i, p_record.time,
qdf_dp_code_to_string(p_record.code));
qdf_debugfs_printf(file,
"%s: HDD SoftAP TX Timeout\n");
qdf_debugfs_printf(
file, "DPT: %04d: %llu %s\n",
i, p_record.time,
qdf_dp_code_to_string(p_record.code));
qdf_debugfs_printf(file, "HDD SoftAP TX Timeout\n");
break;
case QDF_DP_TRACE_CE_FAST_PACKET_ERR_RECORD:
qdf_debugfs_printf(file, "DPT: %04d: %s %s\n",
i, p_record.time,
qdf_dp_code_to_string(p_record.code));
qdf_debugfs_printf(file,
"%s: CE Fast Packet Error\n");
qdf_debugfs_printf(
file, "DPT: %04d: %llu %s\n",
i, p_record.time,
qdf_dp_code_to_string(p_record.code));
qdf_debugfs_printf(file, "CE Fast Packet Error\n");
break;
case QDF_DP_TRACE_MAX: