Parcourir la source

qcacld-3.0: Rename WIIF_TDLS_OFFCHANNEL_SUPPORT

Rename WIIF_TDLS_OFFCHANNEL_SUPPORT to fix misspelling of "WIFI".

Change-Id: I03be0889b464e0aa5ded982b335a3dbf9d744cb9
CRs-Fixed: 3335363
Jeff Johnson il y a 2 ans
Parent
commit
cd2be2c878
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      core/hdd/src/wlan_hdd_cfg80211.c
  2. 1 1
      core/hdd/src/wlan_hdd_cfg80211.h

+ 1 - 1
core/hdd/src/wlan_hdd_cfg80211.c

@@ -1021,7 +1021,7 @@ static int __wlan_hdd_cfg80211_get_tdls_capabilities(struct wiphy *wiphy,
 		set = set | (tdls_external_control ?
 					WIFI_TDLS_EXTERNAL_CONTROL_SUPPORT : 0);
 		set = set | (tdls_off_channel ?
-					WIIF_TDLS_OFFCHANNEL_SUPPORT : 0);
+					WIFI_TDLS_OFFCHANNEL_SUPPORT : 0);
 		max_num_tdls_sta = cfg_tdls_get_max_peer_count(hdd_ctx->psoc);
 
 		hdd_debug("TDLS Feature supported value %x", set);

+ 1 - 1
core/hdd/src/wlan_hdd_cfg80211.h

@@ -270,7 +270,7 @@ typedef enum {
 /* Add more features here */
 #define WIFI_TDLS_SUPPORT			BIT(0)
 #define WIFI_TDLS_EXTERNAL_CONTROL_SUPPORT	BIT(1)
-#define WIIF_TDLS_OFFCHANNEL_SUPPORT		BIT(2)
+#define WIFI_TDLS_OFFCHANNEL_SUPPORT		BIT(2)
 
 #define CFG_NON_AGG_RETRY_MAX                  (64)
 #define CFG_AGG_RETRY_MAX                      (64)