qcacmn: Implement ndp schedule update and channel info in ndp confirm

Add support for ndp schedule update event and provide channel information
in ndp confirm event.

Change-Id: Ic2c073dd4f220627cc2bd1a2d52d858136b6b450
CRs-Fixed: 2180310
diff --git a/wmi_unified_api.h b/wmi_unified_api.h
index a3b6397..d8784e0 100644
--- a/wmi_unified_api.h
+++ b/wmi_unified_api.h
@@ -1993,7 +1993,7 @@
 #ifdef WLAN_FEATURE_NAN_CONVERGENCE
 /**
  * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @req: pointer to request buffer
  *
  * Return: status of operation
@@ -2003,7 +2003,7 @@
 
 /**
  * wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @req: pointer to request buffer
  *
  * Return: status of operation
@@ -2013,7 +2013,7 @@
 
 /**
  * wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @req: pointer to request buffer
  *
  * Return: status of operation
@@ -2023,7 +2023,7 @@
 
 /**
  * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @data: event buffer
  * @rsp: buffer to populate
  *
@@ -2034,7 +2034,7 @@
 
 /**
  * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @data: event buffer
  * @ind: buffer to populate
  *
@@ -2045,7 +2045,7 @@
 
 /**
  * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @data: event buffer
  * @ev: buffer to populate
  *
@@ -2056,7 +2056,7 @@
 
 /**
  * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @data: event buffer
  * @rsp: buffer to populate
  *
@@ -2067,7 +2067,7 @@
 
 /**
  * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @data: event buffer
  * @rsp: buffer to populate
  *
@@ -2078,7 +2078,7 @@
 
 /**
  * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
- * @wmi_hdl: wma handle
+ * @wmi_hdl: wmi handle
  * @data: event buffer
  * @ind: buffer to populate
  *
@@ -2086,6 +2086,17 @@
  */
 QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
 			struct nan_datapath_end_indication_event **ind);
+
+/**
+ * wmi_extract_ndp_sch_update - api to extract ndp sch update from event buffer
+ * @wmi_hdl: wmi handle
+ * @data: event buffer
+ * @ind: buffer to populate
+ *
+ * Return: status of operation
+ */
+QDF_STATUS wmi_extract_ndp_sch_update(wmi_unified_t wmi_handle, uint8_t *data,
+				struct nan_datapath_sch_update_event *ind);
 #endif
 
 /**