Ver código fonte

qcacld-3.0: Use API to set ML capable for adapter

Use the wlan_hdd_set_ml_cap_for_sap_intf() API to
set SL ML capable for all SAP mode interface.

Change-Id: Ieacadfd35c4588b9779ab57627d2885c944c36eb
CRs-Fixed: 3366141
Vinod Kumar Pirla 2 anos atrás
pai
commit
dc3f80fbcd
2 arquivos alterados com 20 adições e 30 exclusões
  1. 20 5
      core/hdd/src/wlan_hdd_main.c
  2. 0 25
      core/hdd/src/wlan_hdd_p2p.c

+ 20 - 5
core/hdd/src/wlan_hdd_main.c

@@ -7537,6 +7537,25 @@ static void wlan_hdd_cfg80211_scan_block_cb(struct work_struct *work)
 	osif_vdev_sync_op_stop(vdev_sync);
 }
 
+#ifdef WLAN_FEATURE_11BE_MLO
+static inline void
+wlan_hdd_set_ml_cap_for_sap_intf(struct hdd_adapter_create_param *create_params,
+				 enum QDF_OPMODE mode)
+{
+	if (mode != QDF_SAP_MODE)
+		return;
+
+	create_params->is_single_link = true;
+	create_params->is_ml_adapter = true;
+}
+#else
+static inline void
+wlan_hdd_set_ml_cap_for_sap_intf(struct hdd_adapter_create_param *create_params,
+				 enum QDF_OPMODE mode)
+{
+}
+#endif
+
 /**
  * hdd_open_adapter() - open and setup the hdd adapter
  * @hdd_ctx: global hdd context
@@ -7724,11 +7743,7 @@ struct hdd_adapter *hdd_open_adapter(struct hdd_context *hdd_ctx,
 		INIT_WORK(&adapter->ipv6_notifier_work,
 			  hdd_ipv6_notifier_work_queue);
 #endif
-		if (session_type == QDF_SAP_MODE) {
-			/* Create all SAP mode adapters as ML type */
-			params->is_ml_adapter = true;
-			params->is_single_link = true;
-		}
+		wlan_hdd_set_ml_cap_for_sap_intf(params, session_type);
 
 		break;
 	case QDF_FTM_MODE:

+ 0 - 25
core/hdd/src/wlan_hdd_p2p.c

@@ -689,26 +689,6 @@ int hdd_set_p2p_ps(struct net_device *dev, void *msgData)
 	return wlan_hdd_set_power_save(adapter, &noa);
 }
 
-#ifdef WLAN_FEATURE_11BE_MLO
-static inline void
-wlan_hdd_set_ml_capab_add_iface(struct hdd_adapter_create_param *create_params,
-				enum QDF_OPMODE mode)
-{
-	if (mode != QDF_SAP_MODE)
-		return;
-
-	create_params->is_single_link = true;
-	create_params->is_ml_adapter = true;
-}
-#else
-static inline void
-wlan_hdd_set_ml_capab_add_iface(struct hdd_adapter_create_param *create_params,
-				enum QDF_OPMODE mode)
-{
-}
-
-#endif
-
 /**
  * __wlan_hdd_add_virtual_intf() - Add virtual interface
  * @wiphy: wiphy pointer
@@ -735,7 +715,6 @@ struct wireless_dev *__wlan_hdd_add_virtual_intf(struct wiphy *wiphy,
 	QDF_STATUS status;
 	struct wlan_objmgr_vdev *vdev;
 	int ret;
-	bool eht_capab;
 	struct hdd_adapter_create_param create_params = {0};
 
 	hdd_enter();
@@ -782,10 +761,6 @@ struct wireless_dev *__wlan_hdd_add_virtual_intf(struct wiphy *wiphy,
 
 	create_params.is_add_virtual_iface = 1;
 
-	ucfg_psoc_mlme_get_11be_capab(hdd_ctx->psoc, &eht_capab);
-	if (eht_capab)
-		wlan_hdd_set_ml_capab_add_iface(&create_params, mode);
-
 	adapter = hdd_get_adapter(hdd_ctx, QDF_STA_MODE);
 	if (adapter && !wlan_hdd_validate_vdev_id(adapter->vdev_id)) {
 		vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_P2P_ID);