[qca-nss-drv]: Wifi data plane offload to NSS

CR-Fixed: 853481

This Change contains the Message interface APIs and associated changes
needed to support WIFI data plane offload on NSS.

Change-Id: I702a7349a1c22aadb263b3e153b0e834d2f260e9
Signed-off-by: Radha krishna Simha Jiguru <rjiguru@codeaurora.org>
diff --git a/Makefile b/Makefile
index 3a1730d..7f081ca 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,9 @@
 			nss_eth_rx.o \
 			nss_n2h.o \
 			nss_data_plane.o \
-			nss_log.o
+			nss_log.o \
+			nss_wifi.o \
+			nss_wifi_vdev.o
 
 #
 # TODO: Deprecated files should be removed before merge
@@ -56,13 +58,13 @@
 qca-nss-drv-objs += \
 			nss_tx_rx_virt_if.o
 
-ccflags-y += -I$(obj)/nss_hal/include -I$(obj)/exports -DNSS_DEBUG_LEVEL=0 -DNSS_EMPTY_BUFFER_SIZE=1792 -DNSS_PKT_STATS_ENABLED=1
+ccflags-y += -I$(obj)/nss_hal/include -I$(obj)/exports -DNSS_DEBUG_LEVEL=0 -DNSS_PKT_STATS_ENABLED=1
 ccflags-y += -DNSS_PM_DEBUG_LEVEL=0 -DNSS_PPP_SUPPORT=1
 
 ifneq ($(findstring 3.4, $(KERNELVERSION)),)
-NSS_CCFLAGS = -DNSS_DT_SUPPORT=0 -DNSS_FW_DBG_SUPPORT=1 -DNSS_PM_SUPPORT=1
+NSS_CCFLAGS = -DNSS_DT_SUPPORT=0 -DNSS_FW_DBG_SUPPORT=1 -DNSS_PM_SUPPORT=1 -DNSS_EMPTY_BUFFER_SIZE=1920
 else
-NSS_CCFLAGS = -DNSS_DT_SUPPORT=1 -DNSS_FW_DBG_SUPPORT=0 -DNSS_PM_SUPPORT=0
+NSS_CCFLAGS = -DNSS_DT_SUPPORT=1 -DNSS_FW_DBG_SUPPORT=0 -DNSS_PM_SUPPORT=0 -DNSS_EMPTY_BUFFER_SIZE=1792
 ccflags-y += -I$(obj)
 endif