Browse Source

qcacmn: Add change to remove CONFIG_WIN macro

Add code to remove CONFIG_WIN macro from common UMAC's
DFS module

Change-Id: Iaa1a5d17d202733003c4be943c0995795d8dc86e
CRs-Fixed: 2458658
Akshay Kosigi 5 years ago
parent
commit
38d66845c8
1 changed files with 2 additions and 16 deletions
  1. 2 16
      umac/dfs/core/src/dfs_filter_init.h

+ 2 - 16
umac/dfs/core/src/dfs_filter_init.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
  *
  *
  * Permission to use, copy, modify, and/or distribute this software for
@@ -88,26 +88,12 @@ static inline void dfs_main_timer_detach(struct wlan_dfs *dfs)
 }
 #endif
 
-#ifdef CONFIG_WIN
-#if DA_SUPPORT
-#if defined(WLAN_DFS_DIRECT_ATTACH)
+#if defined(DA_SUPPORT) && defined(WLAN_DFS_DIRECT_ATTACH)
 void dfs_get_da_radars(struct wlan_dfs *dfs);
 #else
 static inline void dfs_get_da_radars(struct wlan_dfs *dfs)
 {
 }
 #endif
-#else
-#define dfs_get_da_radars(dfs) /**/
-#endif /* _DA_SUPPORT_ */
-#else
-#if defined(WLAN_DFS_DIRECT_ATTACH)
-void dfs_get_da_radars(struct wlan_dfs *dfs);
-#else
-static inline void dfs_get_da_radars(struct wlan_dfs *dfs)
-{
-}
-#endif
-#endif /* _CONFIG_WIN_ */
 
 #endif /* _DFS_FILTER_INIT_H_ */