Răsfoiți Sursa

qcacmn: Remove puncture pattern from CFR

Removing additional puncture pattern parameter from CFR.

Change-Id: I2ed5a64d793946d3d96df847631c0fa0f8ac3274
CRs-Fixed: 3260286
Nidhi Jain 2 ani în urmă
părinte
comite
1340f268c1

+ 1 - 3
umac/cfr/dispatcher/inc/wlan_cfr_public_structs.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 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
@@ -177,9 +178,6 @@ struct cfr_wlanconfig_param {
 		 cap_intval_mode_sel         :1,
 		 rsvd7                       :15;
 #endif
-#ifdef WLAN_FEATURE_11BE
-	uint32_t puncture_bitmap;
-#endif
 };
 
 #endif /* _WLAN_CFR_PUBLIC_STRUCTS_H_ */

+ 0 - 6
umac/cfr/dispatcher/inc/wlan_cfr_utils_api.h

@@ -254,9 +254,6 @@ struct cfr_capture_params {
 	u_int8_t   bandwidth;
 	u_int32_t  period;
 	u_int8_t   method;
-#ifdef WLAN_FEATURE_11BE
-	uint32_t   puncture_bitmap;
-#endif
 };
 
 /**
@@ -650,9 +647,6 @@ struct peer_cfr {
 	u_int8_t   bandwidth;
 	u_int32_t  period;
 	u_int8_t   capture_method;
-#ifdef WLAN_FEATURE_11BE
-	uint32_t   puncture_bitmap;
-#endif
 };
 
 /**

+ 1 - 3
umac/cfr/dispatcher/src/wlan_cfr_ucfg_api.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 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
@@ -122,9 +123,6 @@ int ucfg_cfr_start_capture(struct wlan_objmgr_pdev *pdev,
 		pe->period = params->period;
 		pe->capture_method = params->method;
 		pe->request = PEER_CFR_CAPTURE_ENABLE;
-#ifdef WLAN_FEATURE_11BE
-		pe->puncture_bitmap = params->puncture_bitmap;
-#endif
 	} else
 		pa->cfr_current_sta_count--;