소스 검색

Revert "qcacmn: Add UMAC ID and LMAC tx ops for SAWF"

This reverts Change-Id:	I1513c47989fb1e826fe030c043cd5e4f4382fb54

Change-Id: Ia07cb692704eb48261c9830ca5b3a0f01b67f61a
CRs-Fixed: 3472179
Prabhu Dass Mahalingam 2 년 전
부모
커밋
6cf82b42f0
2개의 변경된 파일0개의 추가작업 그리고 35개의 파일을 삭제
  1. 0 2
      umac/cmn_services/inc/wlan_cmn.h
  2. 0 33
      umac/global_umac_dispatcher/lmac_if/inc/wlan_lmac_if_def.h

+ 0 - 2
umac/cmn_services/inc/wlan_cmn.h

@@ -301,7 +301,6 @@
  * @WLAN_UMAC_COMP_COAP:          Constrained Application Protocol component
  * @WLAN_UMAC_COMP_QMI:           QMI component
  * @WLAN_UMAC_COMP_AFC:           AFC component
- * @WLAN_UMAC_COMP_SAWF:          SAWF component
  * @WLAN_UMAC_COMP_ID_MAX:        Maximum components in UMAC
  *
  * This id is static.
@@ -359,7 +358,6 @@ enum wlan_umac_comp_id {
 	WLAN_UMAC_COMP_COAP               = 48,
 	WLAN_UMAC_COMP_QMI                = 49,
 	WLAN_UMAC_COMP_AFC                = 50,
-	WLAN_UMAC_COMP_SAWF               = 51,
 	WLAN_UMAC_COMP_ID_MAX,
 };
 

+ 0 - 33
umac/global_umac_dispatcher/lmac_if/inc/wlan_lmac_if_def.h

@@ -1666,35 +1666,6 @@ struct wlan_lmac_if_coap_tx_ops {
 };
 #endif
 
-#ifdef CONFIG_SAWF
-/**
- * struct wlan_lmac_if_sawf_tx_ops - Target function pointers for SAWF
- *
- * @sawf_svc_create_send: function pointer to send SAWF SVC create
- * @sawf_svc_disable_send: function pointer to send SAWF SVC disable
- * @sawf_ul_svc_update_send: function pointer to update
- *                           peer uplink QoS parameters
- * @sawf_update_ul_params: function pointer to update flow uplink QoS parameters
- */
-struct wlan_lmac_if_sawf_tx_ops {
-	QDF_STATUS
-	(*sawf_svc_create_send)(struct wlan_objmgr_pdev *pdev, void *params);
-	QDF_STATUS
-	(*sawf_svc_disable_send)(struct wlan_objmgr_pdev *pdev, void *params);
-	QDF_STATUS
-	(*sawf_ul_svc_update_send)(struct wlan_objmgr_pdev *pdev,
-				   uint8_t vdev_id, uint8_t *peer_mac,
-				   uint8_t ac, uint8_t add_or_sub,
-				   void *svc_params);
-	QDF_STATUS
-	(*sawf_update_ul_params)(struct wlan_objmgr_pdev *pdev, uint8_t vdev_id,
-				 uint8_t *peer_mac, uint8_t tid, uint8_t ac,
-				 uint32_t service_interval, uint32_t burst_size,
-				 uint32_t min_tput, uint32_t max_latency,
-				 uint8_t add_or_sub);
-};
-#endif
-
 /**
  * struct wlan_lmac_if_tx_ops - south bound tx function pointers
  * @mgmt_txrx_tx_ops: mgmt txrx tx ops
@@ -1728,7 +1699,6 @@ struct wlan_lmac_if_sawf_tx_ops {
  * @twt_tx_ops: TWT tx ops
  * @spatial_reuse_tx_ops: Spatial Reuse tx ops
  * @coap_ops: COAP tx ops
- * @sawf_tx_ops: SAWF tx ops
  *
  * Callback function tabled to be registered with umac.
  * umac will use the functional table to send events/frames to wmi
@@ -1835,9 +1805,6 @@ struct wlan_lmac_if_tx_ops {
 #ifdef WLAN_FEATURE_COAP
 	struct wlan_lmac_if_coap_tx_ops coap_ops;
 #endif
-#ifdef CONFIG_SAWF
-	struct wlan_lmac_if_sawf_tx_ops sawf_tx_ops;
-#endif
 };
 
 /**