Explorar el Código

qcacld-3.0: Fix compile error if TDLS disable

Move definition STA_ENTRY_TDLS_PEER out
of the TDLS feature macro, which will be used
in the common code lim_process_addba_req().
Otherwise it will happen compile error if
FEATURE_WLAN_TDLS disabled.

Change-Id: Idff66bc61b60147bfb9f5c627d2e5a29a28bd268
CRs-Fixed: 3784440
Chaoli Zhou hace 11 meses
padre
commit
971ca5ca55
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      core/wma/inc/wma_if.h

+ 2 - 2
core/wma/inc/wma_if.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. 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
@@ -57,8 +57,8 @@
 /* Special station id for transmitting broadcast frames. */
 #define STA_ENTRY_BCAST             3
 #define STA_ENTRY_PEER              STA_ENTRY_OTHER
-#ifdef FEATURE_WLAN_TDLS
 #define STA_ENTRY_TDLS_PEER         4
+#ifdef FEATURE_WLAN_TDLS
 #define IS_TDLS_PEER(type) ((type) == STA_ENTRY_TDLS_PEER)
 #else /* !FEATURE_WLAN_TDLS */
 #define IS_TDLS_PEER(type) false