diff options
author | Wang, Fan <fan.wang@intel.com> | 2017-06-06 18:51:35 +0800 |
---|---|---|
committer | Fu Siyuan <siyuan.fu@intel.com> | 2017-06-07 16:17:36 +0800 |
commit | b941c34ef859971e29683ffb57c309e24e6a96be (patch) | |
tree | f60608319d1f4511072344c665564cd9d747498b /MdePkg/Include/Protocol/WiFi2.h | |
parent | d4c558e83d8f428393d27816772efc7f4b0e8403 (diff) | |
download | edk2-b941c34ef859971e29683ffb57c309e24e6a96be.tar.gz edk2-b941c34ef859971e29683ffb57c309e24e6a96be.tar.bz2 edk2-b941c34ef859971e29683ffb57c309e24e6a96be.zip |
MdePkg: update Wi-Fi/Supplicant header files to meet UEFI 2.7.
This patch is used to update supplicant.h and wifi2.h
to meet UEFI 2.7 definition. Add EfiSupplicant80211PMK
field in EFI_SUPPLICANT_DATA_TYPE and change **NetworkDesc
to NetworkDesc[1] in EFI_80211_GET_NETWORKS_RESULT.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wang Fan <fan.wang@intel.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Diffstat (limited to 'MdePkg/Include/Protocol/WiFi2.h')
-rw-r--r-- | MdePkg/Include/Protocol/WiFi2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/WiFi2.h b/MdePkg/Include/Protocol/WiFi2.h index fc4da5cf21..e370059b40 100644 --- a/MdePkg/Include/Protocol/WiFi2.h +++ b/MdePkg/Include/Protocol/WiFi2.h @@ -1,7 +1,7 @@ /** @file
This file defines the EFI Wireless MAC Connection II Protocol.
- Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -202,7 +202,7 @@ typedef struct { // The NetworkDesc is a pointer to an array of EFI_80211_NETWORK_DESCRIPTION
// instances. It is caller's responsibility to free this buffer.
//
- EFI_80211_NETWORK_DESCRIPTION **NetworkDesc;
+ EFI_80211_NETWORK_DESCRIPTION NetworkDesc[1];
} EFI_80211_GET_NETWORKS_RESULT;
///
|