diff options
author | Ari Zigler <ariz@mellanox.com> | 2014-02-25 05:20:31 +0000 |
---|---|---|
committer | shenshushi <shenshushi@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-02-25 05:20:31 +0000 |
commit | e27ecde731feeeb59d9e04e25c4bd77f187b5864 (patch) | |
tree | a5da413f4c8d4b8116139927301558887aab3763 /MdePkg | |
parent | e794f18021ccd8fa8f7bbdb3bc85143282dbc12a (diff) | |
download | edk2-platforms-e27ecde731feeeb59d9e04e25c4bd77f187b5864.tar.xz |
Fix the bug for the structure definition of _EFI_ADAPTER_INFORMATION_PROTOCOL in AdapterInformation.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ari Zigler <ariz@mellanox.com>
Reviewed-by: Shumin Qiu <shumin.qiu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15259 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Protocol/AdapterInformation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Include/Protocol/AdapterInformation.h b/MdePkg/Include/Protocol/AdapterInformation.h index 92316f1511..e6be075a79 100644 --- a/MdePkg/Include/Protocol/AdapterInformation.h +++ b/MdePkg/Include/Protocol/AdapterInformation.h @@ -207,7 +207,7 @@ EFI_STATUS /// - Sets device information for adapter.
/// - Gets a list of supported information types for this instance of the protocol.
///
-typedef struct _EFI_ADAPTER_INFORMATION_PROTOCOL {
+struct _EFI_ADAPTER_INFORMATION_PROTOCOL {
EFI_ADAPTER_INFO_GET_INFO GetInformation;
EFI_ADAPTER_INFO_SET_INFO SetInformation;
EFI_ADAPTER_INFO_GET_SUPPORTED_TYPES GetSupportedTypes;
|