浏览代码

qcacld-3.0: Add API to get link_info pointer from adapter

Introduce a new API which returns the pointer of link info
in adapter. The API returns NULL in case of invalid array
index.

Change-Id: I2e9d85775cd2366c99682825de5cd66612148cc9
CRs-Fixed: 3447331
Vinod Kumar Pirla 2 年之前
父节点
当前提交
20f862721f
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      core/hdd/inc/wlan_hdd_main.h

+ 19 - 0
core/hdd/inc/wlan_hdd_main.h

@@ -3098,6 +3098,25 @@ static inline bool hdd_dynamic_mac_addr_supported(struct hdd_context *hdd_ctx)
 }
 #endif
 
+/**
+ * hdd_adapter_get_link_info_ptr() - To get the pointer of link_info
+ * in adapter.
+ * @adapter: HDD adapter
+ * @link_idx: Index of link_info in @adapter.
+ *
+ * The API returns link_info in @adapter pointed at @link_idx in the array.
+ *
+ * Return: Pointer to wlan_hdd_link_info or NULL.
+ */
+static inline struct wlan_hdd_link_info *
+hdd_adapter_get_link_info_ptr(struct hdd_adapter *adapter, uint8_t link_idx)
+{
+	if (!adapter || (link_idx >= WLAN_MAX_MLD))
+		return NULL;
+
+	return &adapter->link_info[link_idx];
+}
+
 /**
  * hdd_start_vendor_acs(): Start vendor ACS procedure
  * @adapter: pointer to SAP adapter struct