qcacld-3.0: Change ssidHidden variable type as tHiddenssId enum

Change ssidHidden variable type as tHiddenssId enum instead of
original boolean type in tagCsrSSIDInfo structure to backup the
value from hdd (eg: eHIDDEN_SSID_NOT_IN_USE, eHIDDEN_SSID_ZERO_LEN,
eHIDDEN_SSID_ZERO_CONTENTS).

Change-Id: Ibc88c80856984b1b61e2fbe489219b391900dad3
CRs-Fixed: 2065342
This commit is contained in:
lifeng
2017-06-22 17:32:21 +08:00
committed by snandini
parent b2d729c52b
commit 21b7b8bd49
2 changed files with 7 additions and 6 deletions

View File

@@ -977,11 +977,6 @@ typedef struct sAniSirGlobal {
bool ignore_assoc_disallowed;
} tAniSirGlobal;
typedef enum {
eHIDDEN_SSID_NOT_IN_USE,
eHIDDEN_SSID_ZERO_LEN,
eHIDDEN_SSID_ZERO_CONTENTS
} tHiddenssId;
#ifdef FEATURE_WLAN_TDLS

View File

@@ -237,10 +237,16 @@ typedef struct tagCsrChannelInfo {
uint8_t *ChannelList; /* it will be an array of channels */
} tCsrChannelInfo, *tpCsrChannelInfo;
typedef enum {
eHIDDEN_SSID_NOT_IN_USE,
eHIDDEN_SSID_ZERO_LEN,
eHIDDEN_SSID_ZERO_CONTENTS
} tHiddenssId;
typedef struct tagCsrSSIDInfo {
tSirMacSSid SSID;
bool handoffPermitted;
bool ssidHidden;
tHiddenssId ssidHidden;
} tCsrSSIDInfo;
typedef struct tagCsrSSIDs {