Ver código fonte

qcacmn: Set eht flag when the frame is 11be

In monitor mode, set EHT flag for packets for
11be frames when reading status TLV.

Change-Id: I8792bf7737dcf3efe69125218d5170d69f761142
CRs-Fixed: 3724725
Ananya Gupta 1 ano atrás
pai
commit
7b3f6814fa
1 arquivos alterados com 4 adições e 1 exclusões
  1. 4 1
      hal/wifi3.0/be/hal_be_api_mon.h

+ 4 - 1
hal/wifi3.0/be/hal_be_api_mon.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2024 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 above
@@ -2650,6 +2650,9 @@ hal_rx_status_get_tlv_info_generic_be(void *rx_tlv_hdr, void *ppduinfo,
 		case HAL_RX_PKT_TYPE_11AX:
 			ppdu_info->rx_status.he_flags = 1;
 			break;
+		case HAL_RX_PKT_TYPE_11BE:
+			ppdu_info->rx_status.eht_flags = 1;
+			break;
 		default:
 			break;
 		}