]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/Dxe/Hand/Handle.h
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Hand / Handle.h
index 28f762265a4ca4fdd79cbbf4119712f20e9b328e..2a1d5879cd0ce9ede877e850bcdcb22207b11bd7 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Support functions for managing protocol.\r
 \r
-Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -26,7 +26,7 @@ typedef struct {
   /// All handles list of IHANDLE\r
   LIST_ENTRY          AllHandles;\r
   /// List of PROTOCOL_INTERFACE's for this handle\r
-  LIST_ENTRY          Protocols;      \r
+  LIST_ENTRY          Protocols;\r
   UINTN               LocateRequest;\r
   /// The Handle Database Key value when this handle was last created or modified\r
   UINT64              Key;\r
@@ -44,13 +44,13 @@ typedef struct {
 typedef struct {\r
   UINTN               Signature;\r
   /// Link Entry inserted to mProtocolDatabase\r
-  LIST_ENTRY          AllEntries;  \r
+  LIST_ENTRY          AllEntries;\r
   /// ID of the protocol\r
-  EFI_GUID            ProtocolID;  \r
+  EFI_GUID            ProtocolID;\r
   /// All protocol interfaces\r
-  LIST_ENTRY          Protocols;     \r
+  LIST_ENTRY          Protocols;\r
   /// Registerd notification handlers\r
-  LIST_ENTRY          Notify;                 \r
+  LIST_ENTRY          Notify;\r
 } PROTOCOL_ENTRY;\r
 \r
 \r
@@ -63,17 +63,17 @@ typedef struct {
 typedef struct {\r
   UINTN                       Signature;\r
   /// Link on IHANDLE.Protocols\r
-  LIST_ENTRY                  Link;   \r
+  LIST_ENTRY                  Link;\r
   /// Back pointer\r
-  IHANDLE                     *Handle;  \r
+  IHANDLE                     *Handle;\r
   /// Link on PROTOCOL_ENTRY.Protocols\r
-  LIST_ENTRY                  ByProtocol; \r
+  LIST_ENTRY                  ByProtocol;\r
   /// The protocol ID\r
-  PROTOCOL_ENTRY              *Protocol;  \r
+  PROTOCOL_ENTRY              *Protocol;\r
   /// The interface value\r
-  VOID                        *Interface; \r
+  VOID                        *Interface;\r
   /// OPEN_PROTOCOL_DATA list\r
-  LIST_ENTRY                  OpenList;       \r
+  LIST_ENTRY                  OpenList;\r
   UINTN                       OpenListCount;\r
 \r
 } PROTOCOL_INTERFACE;\r
@@ -83,7 +83,7 @@ typedef struct {
 typedef struct {\r
   UINTN                       Signature;\r
   ///Link on PROTOCOL_INTERFACE.OpenList\r
-  LIST_ENTRY                  Link;      \r
+  LIST_ENTRY                  Link;\r
 \r
   EFI_HANDLE                  AgentHandle;\r
   EFI_HANDLE                  ControllerHandle;\r
@@ -101,11 +101,11 @@ typedef struct {
   UINTN               Signature;\r
   PROTOCOL_ENTRY      *Protocol;\r
   /// All notifications for this protocol\r
-  LIST_ENTRY          Link;                   \r
+  LIST_ENTRY          Link;\r
   /// Event to notify\r
-  EFI_EVENT           Event;    \r
+  EFI_EVENT           Event;\r
   /// Last position notified\r
-  LIST_ENTRY          *Position;              \r
+  LIST_ENTRY          *Position;\r
 } PROTOCOL_NOTIFY;\r
 \r
 \r