qcacld-3.0: TDLS module converge

Enable TDLS module

Change-Id: I5c898deddddfc5d1646a07e34dce03813b55ff1b
CRs-Fixed: 2011330
diff --git a/core/hdd/inc/wlan_hdd_tdls.h b/core/hdd/inc/wlan_hdd_tdls.h
index 129e29f..f8b934c 100644
--- a/core/hdd/inc/wlan_hdd_tdls.h
+++ b/core/hdd/inc/wlan_hdd_tdls.h
@@ -787,6 +787,13 @@
 					const void *data,
 					int data_len);
 
+QDF_STATUS hdd_tdls_register_tdls_peer(void *userdata, uint32_t vdev_id,
+				       const uint8_t *mac, uint16_t sta_id,
+				       uint8_t ucastsig, uint8_t qos);
+
+QDF_STATUS hdd_tdls_deregister_tdl_peer(void *userdata,
+					uint32_t vdev_id, uint8_t sta_id);
+
 #else
 static inline void hdd_update_tdls_ct_and_teardown_links(hdd_context_t *hdd_ctx)
 {
@@ -845,6 +852,21 @@
 			enum tdls_concerned_external_events event)
 {
 }
+
+static QDF_STATUS hdd_tdls_register_tdls_peer(void *userdata,
+					      uint32_t vdev_id,
+					      const uint8_t *mac,
+					      uint16_t sta_id,
+					      uint8_t ucastsig,
+					      uint8_t qos)
+{
+}
+
+static QDF_STATUS hdd_tdls_deregister_tdl_peer(void *userdata,
+					       uint32_t vdev_id, uint8_t sta_id)
+
+{
+}
 #endif /* End of FEATURE_WLAN_TDLS */
 
 #ifdef FEATURE_WLAN_DIAG_SUPPORT