|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2020-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -181,12 +181,14 @@ static void pkt_capture_tx_get_phy_info(
|
|
|
mcs = 8 + pktcapture_hdr->mcs;
|
|
|
else
|
|
|
mcs = pktcapture_hdr->mcs;
|
|
|
+
|
|
|
+ tx_status->ht_mcs = mcs;
|
|
|
break;
|
|
|
case 0x3:
|
|
|
tx_status->vht_flags = 1;
|
|
|
mcs = pktcapture_hdr->mcs;
|
|
|
tx_status->vht_flag_values3[0] =
|
|
|
- mcs << 0x4 | (pktcapture_hdr->nss + 1);
|
|
|
+ mcs << 0x4 | (pktcapture_hdr->nss);
|
|
|
tx_status->vht_flag_values2 = pktcapture_hdr->bw;
|
|
|
break;
|
|
|
case 0x4:
|