qcacld-3.0: Remove duplicate struct struct wlan_ies

Remove duplicate struct struct wlan_ies and replace with
struct element_info.

Change-Id: I60d34db5845d840679052912182ea09b86988e43
CRs-Fixed: 2848237
This commit is contained in:
Abhishek Singh
2021-01-05 10:31:24 +05:30
committed by snandini
parent e5e897f263
commit d3cbcc0d30
17 changed files with 89 additions and 99 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012-2015, 2020, The Linux Foundation. All rights reserved.
* Copyright (c) 2012-2015, 2020-2021, The Linux Foundation. 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
@@ -176,14 +176,14 @@ QDF_STATUS cm_send_sb_disconnect_req(struct scheduler_msg *msg)
static void cm_copy_peer_disconnect_ies(struct wlan_objmgr_vdev *vdev,
struct element_info *ap_ie)
{
struct wlan_ies *discon_ie;
struct element_info *discon_ie;
discon_ie = mlme_get_peer_disconnect_ies(vdev);
if (!discon_ie)
return;
ap_ie->len = discon_ie->len;
ap_ie->ptr = discon_ie->data;
ap_ie->ptr = discon_ie->ptr;
}
QDF_STATUS cm_handle_disconnect_resp(struct scheduler_msg *msg)