]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/Dxe/Hand/Handle.h
MdeModulePkg DxeCore: Fix issue to print GUID value %g without pointer
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Hand / Handle.h
index f7b85dba26d95ad6d744077186bd36a899ae7ca4..28f762265a4ca4fdd79cbbf4119712f20e9b328e 100644 (file)
@@ -1,8 +1,8 @@
 /** @file\r
   Support functions for managing protocol.\r
 \r
-Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
-All rights reserved. This program and the accompanying materials\r
+Copyright (c) 2006 - 2008, 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
 http://opensource.org/licenses/bsd-license.php\r
@@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #define  _HAND_H_\r
 \r
 \r
-#define EFI_HANDLE_SIGNATURE            EFI_SIGNATURE_32('h','n','d','l')\r
+#define EFI_HANDLE_SIGNATURE            SIGNATURE_32('h','n','d','l')\r
 \r
 ///\r
 /// IHANDLE - contains a list of protocol handles\r
@@ -34,7 +34,7 @@ typedef struct {
 \r
 #define ASSERT_IS_HANDLE(a)  ASSERT((a)->Signature == EFI_HANDLE_SIGNATURE)\r
 \r
-#define PROTOCOL_ENTRY_SIGNATURE        EFI_SIGNATURE_32('p','r','t','e')\r
+#define PROTOCOL_ENTRY_SIGNATURE        SIGNATURE_32('p','r','t','e')\r
 \r
 ///\r
 /// PROTOCOL_ENTRY - each different protocol has 1 entry in the protocol\r
@@ -54,7 +54,7 @@ typedef struct {
 } PROTOCOL_ENTRY;\r
 \r
 \r
-#define PROTOCOL_INTERFACE_SIGNATURE  EFI_SIGNATURE_32('p','i','f','c')\r
+#define PROTOCOL_INTERFACE_SIGNATURE  SIGNATURE_32('p','i','f','c')\r
 \r
 ///\r
 /// PROTOCOL_INTERFACE - each protocol installed on a handle is tracked\r
@@ -78,7 +78,7 @@ typedef struct {
 \r
 } PROTOCOL_INTERFACE;\r
 \r
-#define OPEN_PROTOCOL_DATA_SIGNATURE  EFI_SIGNATURE_32('p','o','d','l')\r
+#define OPEN_PROTOCOL_DATA_SIGNATURE  SIGNATURE_32('p','o','d','l')\r
 \r
 typedef struct {\r
   UINTN                       Signature;\r
@@ -92,7 +92,7 @@ typedef struct {
 } OPEN_PROTOCOL_DATA;\r
 \r
 \r
-#define PROTOCOL_NOTIFY_SIGNATURE       EFI_SIGNATURE_32('p','r','t','n')\r
+#define PROTOCOL_NOTIFY_SIGNATURE       SIGNATURE_32('p','r','t','n')\r
 \r
 ///\r
 /// PROTOCOL_NOTIFY - used for each register notification for a protocol\r