소스 검색

qcacld-3.0: Correct the debug print for TX BW

Host driver log of the TX rate bandwidth is not
correct in wlan_hdd_update_rate_info.

Change-Id: I2d27090d4108c905c997f872fa428df1df556fac
CRs-Fixed: 3586147
Abhinav Kumar 1 년 전
부모
커밋
75f3c668b1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/hdd/src/wlan_hdd_stats.c

+ 1 - 1
core/hdd/src/wlan_hdd_stats.c

@@ -7425,7 +7425,7 @@ static int wlan_hdd_update_rate_info(struct wlan_hdd_link_info *link_info,
 			  "[RX: Reporting MCS rate %d, flags 0x%x pkt cnt %d, nss %d, bw %d]",
 			  sinfo->txrate.mcs, sinfo->txrate.flags,
 			  sinfo->tx_packets, sinfo->txrate.nss,
-			  sinfo->rxrate.bw, sinfo->rxrate.mcs,
+			  sinfo->txrate.bw, sinfo->rxrate.mcs,
 			  sinfo->rxrate.flags, sinfo->rx_packets,
 			  sinfo->rxrate.nss, sinfo->rxrate.bw);
 	}