summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Protocol/Eap.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Protocol/Eap.h')
-rw-r--r--MdePkg/Include/Protocol/Eap.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/MdePkg/Include/Protocol/Eap.h b/MdePkg/Include/Protocol/Eap.h
index 203d0f40b0..37b94b55c9 100644
--- a/MdePkg/Include/Protocol/Eap.h
+++ b/MdePkg/Include/Protocol/Eap.h
@@ -16,7 +16,6 @@
#ifndef __EFI_EAP_PROTOCOL_H__
#define __EFI_EAP_PROTOCOL_H__
-
#define EFI_EAP_PROTOCOL_GUID \
{ \
0x5d9f96db, 0xe731, 0x4caa, {0xa0, 0xd, 0x72, 0xe1, 0x87, 0xcd, 0x77, 0x62 } \
@@ -28,21 +27,21 @@ typedef struct _EFI_EAP_PROTOCOL EFI_EAP_PROTOCOL;
/// Type for the identification number assigned to the Port by the
/// System in which the Port resides.
///
-typedef VOID * EFI_PORT_HANDLE;
+typedef VOID *EFI_PORT_HANDLE;
///
/// EAP Authentication Method Type (RFC 3748)
///@{
-#define EFI_EAP_TYPE_TLS 13 ///< REQUIRED - RFC 5216
+#define EFI_EAP_TYPE_TLS 13///< REQUIRED - RFC 5216
///@}
//
// EAP_TYPE MD5, OTP and TOEKN_CARD has been removed from UEFI2.3.1B.
// Definitions are kept for backward compatibility.
//
-#define EFI_EAP_TYPE_MD5 4
-#define EFI_EAP_TYPE_OTP 5
-#define EFI_EAP_TYPE_TOKEN_CARD 6
+#define EFI_EAP_TYPE_MD5 4
+#define EFI_EAP_TYPE_OTP 5
+#define EFI_EAP_TYPE_TOKEN_CARD 6
/**
One user provided EAP authentication method.
@@ -146,11 +145,10 @@ EFI_STATUS
/// Port means a NIC. For the details of EAP protocol, please refer to RFC 2284.
///
struct _EFI_EAP_PROTOCOL {
- EFI_EAP_SET_DESIRED_AUTHENTICATION_METHOD SetDesiredAuthMethod;
- EFI_EAP_REGISTER_AUTHENTICATION_METHOD RegisterAuthMethod;
+ EFI_EAP_SET_DESIRED_AUTHENTICATION_METHOD SetDesiredAuthMethod;
+ EFI_EAP_REGISTER_AUTHENTICATION_METHOD RegisterAuthMethod;
};
-extern EFI_GUID gEfiEapProtocolGuid;
+extern EFI_GUID gEfiEapProtocolGuid;
#endif
-