qcacld-3.0: Add INI items to enable NAN datapath feature

Propagation from qcacld-2.0 to qcacld-3.0.

Add .ini items to enable NAN datapath feature. It will be disabled
by default.

Name: genable_nan_datapath
Minimum: 0 (disable)
Maximum: 1 (enable)
Default: 0 (disable)

CRs-Fixed: 962367
Change-Id: I304fcc70c0e83d890ae95d2d4ff1b7ce691374e2
diff --git a/core/hdd/src/wlan_hdd_nan_datapath.c b/core/hdd/src/wlan_hdd_nan_datapath.c
index 3c955f3..dc97c4b 100644
--- a/core/hdd/src/wlan_hdd_nan_datapath.c
+++ b/core/hdd/src/wlan_hdd_nan_datapath.c
@@ -23,4 +23,21 @@
  *
  * WLAN Host Device Driver nan datapath API implementation
  */
+#include "wlan_hdd_includes.h"
 #include "wlan_hdd_nan_datapath.h"
+
+/**
+ * hdd_ndp_print_ini_config()- Print nan datapath specific INI configuration
+ * @hdd_ctx: handle to hdd context
+ *
+ * Return: None
+ */
+void hdd_ndp_print_ini_config(hdd_context_t *hdd_ctx)
+{
+	hddLog(LOG2, "Name = [%s] Value = [%u]",
+		CFG_ENABLE_NAN_DATAPATH_NAME,
+		hdd_ctx->config->enable_nan_datapath);
+	hddLog(LOG2, "Name = [%s] Value = [%u]",
+		CFG_ENABLE_NAN_NDI_CHANNEL_NAME,
+		hdd_ctx->config->nan_datapath_ndi_channel);
+}