Prechádzať zdrojové kódy

qcacld-3.0: Enable UMAC converged southbound interface by default

Enable UMAC converged southbound interface by default by removing
CONFIG_WLAN_CONVERGED_INTERFACE in Kbuild and WLAN_CONVERGED_INTERFACE
based API definitions in wma_main.c.

Change-Id: I3b849192b667e8c2f9fb628355c80b3d817f741a
CRs-Fixed: 1103247
Himanshu Agarwal 8 rokov pred
rodič
commit
b180aede62
3 zmenil súbory, kde vykonal 1 pridanie a 20 odobranie
  1. 0 8
      Kbuild
  2. 0 4
      Kconfig
  3. 1 8
      core/wma/src/wma_main.c

+ 0 - 8
Kbuild

@@ -1126,9 +1126,7 @@ ifeq ($(BUILD_DIAG_VERSION), 1)
 INCS +=		$(HOST_DIAG_LOG_INC)
 endif
 
-ifeq ($(CONFIG_WLAN_CONVERGED_INTERFACE), y)
 INCS +=		$(UMAC_DISP_INC)
-endif
 
 OBJS :=		$(HDD_OBJS) \
 		$(EPPING_OBJS) \
@@ -1169,9 +1167,7 @@ ifeq ($(BUILD_DIAG_VERSION), 1)
 OBJS +=		$(HOST_DIAG_LOG_OBJS)
 endif
 
-ifeq ($(CONFIG_WLAN_CONVERGED_INTERFACE), y)
 OBJS +=		$(UMAC_DISP_OBJS)
-endif
 
 OBJS +=		$(DP_OBJS) \
 		$(WCFG_OBJS)
@@ -1450,10 +1446,6 @@ ifeq ($(CONFIG_WLAN_FEATURE_DSRC), y)
 CDEFINES += -DWLAN_FEATURE_DSRC
 endif
 
-ifeq ($(CONFIG_WLAN_CONVERGED_INTERFACE), y)
-CDEFINES += -DWLAN_CONVERGED_INTERFACE
-endif
-
 #Enable USB specific APIS
 ifeq ($(CONFIG_HIF_USB), 1)
 CDEFINES += -DHIF_USB \

+ 0 - 4
Kconfig

@@ -132,8 +132,4 @@ config WLAN_FEATURE_DISA
 	bool "Enable DISA certification feature"
 	default n
 
-config WLAN_CONVERGED_INTERFACE
-	bool "Enable WLAN UMAC converged interface"
-	default n
-
 endif # QCA_CLD_WLAN

+ 1 - 8
core/wma/src/wma_main.c

@@ -79,11 +79,9 @@
 #include "cdp_txrx_ipa.h"
 #include "cdp_txrx_misc.h"
 #include "wma_nan_datapath.h"
-
-#ifdef WLAN_CONVERGED_INTERFACE
 #include "wlan_lmac_if_def.h"
 #include "wlan_lmac_if_api.h"
-#endif
+
 
 #define WMA_LOG_COMPLETION_TIMER 10000 /* 10 seconds */
 
@@ -1805,7 +1803,6 @@ static void wma_register_debug_callback(void)
 	qdf_register_debug_callback(QDF_MODULE_ID_WMA, &wma_state_info_dump);
 }
 
-#ifdef WLAN_CONVERGED_INTERFACE
 /**
  * wma_register_tx_ops_handler() - register tx_ops of southbound
  * @tx_ops:  tx_ops pointer in southbound
@@ -1869,10 +1866,6 @@ static void wma_target_if_close(tp_wma_handle wma_handle)
 
 	wlan_lmac_if_close(psoc);
 }
-#else
-static void wma_target_if_open(tp_wma_handle wma_handle) {};
-static void wma_target_if_close(tp_wma_handle wma_handle) {};
-#endif
 
 /**
  * wma_open() - Allocate wma context and initialize it.