From a2a04c7b4c6e63f92cd501c11ffed642a1781b8c Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sun, 30 Dec 2018 23:37:17 -0800 Subject: [PATCH] qcacld-3.0: Remove sap_roc_ind from tSap_Event Change I83a704d3f03e9cb9e6a7420f32d609a323799a12 ("qcacld-3.0: Remove legacy P2P codes in SAP") removed the usage of the sap_roc_ind field in tSap_Event. Since it is obsolete, remove the field along with the underlying struct sap_roc_ready_ind_s. Change-Id: I6101ec7874825b8e4e2e891c3f8ae084486eef87 CRs-Fixed: 2378326 --- core/sap/inc/sap_api.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/core/sap/inc/sap_api.h b/core/sap/inc/sap_api.h index 7c7587e306..7891a934d8 100644 --- a/core/sap/inc/sap_api.h +++ b/core/sap/inc/sap_api.h @@ -381,16 +381,6 @@ struct sap_ch_selected_s { uint16_t ch_width; }; -/** - * sap_roc_ready_ind_s - the structure to hold the scan id - * @scan_id: scan identifier - * - * Holds scan identifier - */ -struct sap_roc_ready_ind_s { - uint32_t scan_id; -}; - /** * struct sap_acs_scan_complete_event - acs scan complete event * @status: status of acs scan @@ -446,7 +436,6 @@ typedef struct sap_Event_s { /* eSAP_MAX_ASSOC_EXCEEDED */ tSap_MaxAssocExceededEvent sapMaxAssocExceeded; struct sap_ch_selected_s sap_ch_selected; - struct sap_roc_ready_ind_s sap_roc_ind; struct sap_ch_change_ind sap_chan_cng_ind; struct sap_acs_scan_complete_event sap_acs_scan_comp; } sapevt;