diff options
| author | Deepak Dhamdhere <ddhamdhe@codeaurora.org> | 2016-09-02 00:03:12 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-09-29 17:51:06 -0700 |
| commit | 14796607b59cd973ef4db05e1d74a62cc6576819 (patch) | |
| tree | 59917b9d360651307786c54e6f53292b358a9931 | |
| parent | 461dd1c77284a548671994a64f988101b0a57a1d (diff) | |
qcacmn: Enable EXTSCAN cycle start and completed events
qcacld-2.0 to qcacld-3.0 propagation
Enable firmware to send WMI_EXTSCAN_CYCLE_STARTED_EVENT and
WMI_EXTSCAN_CYCLE_COMPLETED_EVENT instead of
WMI_EXTSCAN_BUCKET_COMPLETED_EVENT as per Android N requirements.
This change is required to complete the propagation of
earlier change I399204261fa3d8515146c590630a3bb663ee801c
CRs-Fixed: 1062739
Change-Id: I5c801912828844aa3d8e2aa4f022cb184aa771c4
| -rw-r--r-- | wmi/src/wmi_unified_tlv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wmi/src/wmi_unified_tlv.c b/wmi/src/wmi_unified_tlv.c index 48eecab4473b..d4b7b43ca173 100644 --- a/wmi/src/wmi_unified_tlv.c +++ b/wmi/src/wmi_unified_tlv.c @@ -5368,7 +5368,8 @@ QDF_STATUS wmi_get_buf_extscan_start_cmd(wmi_unified_t wmi_handle, if (src_bucket->reportEvents & WMI_EXTSCAN_REPORT_EVENTS_EACH_SCAN) dest_blist->notify_extscan_events = - WMI_EXTSCAN_BUCKET_COMPLETED_EVENT; + WMI_EXTSCAN_CYCLE_COMPLETED_EVENT | + WMI_EXTSCAN_CYCLE_STARTED_EVENT; if (src_bucket->reportEvents & WMI_EXTSCAN_REPORT_EVENTS_FULL_RESULTS) { |
