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
This commit is contained in:
Jeff Johnson
2018-12-30 23:37:17 -08:00
committed by nshrivas
parent 380e21f99b
commit a2a04c7b4c

View File

@@ -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;