Ver Fonte

qcacld-3.0: Remove target specific compilation

For api's in wlan_hdd_rx_monitor.h, replace target
specific conditional compilation with feature specific
conditional compilation.

CRs-Fixed: 2819131
Change-Id: I2678192ad5dbb1a4515bd04e67ca23f71f92a2d1
Amruta Kulkarni há 4 anos atrás
pai
commit
fb99dd2375
2 ficheiros alterados com 4 adições e 5 exclusões
  1. 1 1
      Kbuild
  2. 3 4
      core/hdd/src/wlan_hdd_rx_monitor.h

+ 1 - 1
Kbuild

@@ -249,7 +249,7 @@ ifeq ($(CONFIG_WLAN_FEATURE_TWT), y)
 HDD_OBJS += $(HDD_SRC_DIR)/wlan_hdd_twt.o
 endif
 
-ifeq ($(CONFIG_LITHIUM), y)
+ifeq ($(CONFIG_FEATURE_MONITOR_MODE_SUPPORT), y)
 HDD_OBJS += $(HDD_SRC_DIR)/wlan_hdd_rx_monitor.o
 endif
 

+ 3 - 4
core/hdd/src/wlan_hdd_rx_monitor.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -21,8 +21,7 @@
 
 struct ol_txrx_ops;
 
-#if defined(QCA_WIFI_QCA6290) || defined(QCA_WIFI_QCA6390) || \
-    defined(QCA_WIFI_QCA6490) || defined(QCA_WIFI_QCA6750)
+#ifdef FEATURE_MONITOR_MODE_SUPPORT
 /**
  * hdd_rx_monitor_callback(): Callback function for receive monitor mode
  * @vdev: Handle to vdev object
@@ -82,7 +81,7 @@ static inline int hdd_disable_monitor_mode(void)
 	return 0;
 }
 
-#endif /* CONFIG_LITHIUM */
+#endif /* FEATURE_MONITOR_MODE_SUPPORT */
 
 #endif /* __WLAN_HDD_RX_MONITOR_H */