|
@@ -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:
|