qcacmn: Notify partner links info in connect response to the supplicant

Fill ML partners info in connect response structure of the connect
notification to the supplicant.

Change-Id: I3b972254138d0f00ef63f2b4d336d142e6d5e2ae
CRs-Fixed: 3036325
此提交包含在:
Bapiraju Alla
2021-08-27 07:53:42 -07:00
提交者 Madan Koyyalamudi
父節點 0807791b80
當前提交 055acf7a87
共有 3 個檔案被更改,包括 183 行新增69 行删除

查看文件

@@ -399,6 +399,12 @@ QDF_STATUS osif_cm_napi_serialize(bool action);
*/
QDF_STATUS osif_cm_save_gtk(struct wlan_objmgr_vdev *vdev,
struct wlan_cm_connect_resp *rsp);
#else
static inline QDF_STATUS osif_cm_save_gtk(struct wlan_objmgr_vdev *vdev,
struct wlan_cm_connect_resp *rsp)
{
return QDF_STATUS_SUCCESS;
}
#endif
#ifdef WLAN_FEATURE_FILS_SK
@@ -416,6 +422,13 @@ QDF_STATUS osif_cm_save_gtk(struct wlan_objmgr_vdev *vdev,
QDF_STATUS osif_cm_set_hlp_data(struct net_device *dev,
struct wlan_objmgr_vdev *vdev,
struct wlan_cm_connect_resp *rsp);
#else
static inline QDF_STATUS osif_cm_set_hlp_data(struct net_device *dev,
struct wlan_objmgr_vdev *vdev,
struct wlan_cm_connect_resp *rsp)
{
return QDF_STATUS_SUCCESS;
}
#endif
/**