summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2008-03-20 16:37:48 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2008-03-20 16:37:48 +0000
commite5bce2758f79f8b1d5a5466d48ff482b1b06670e (patch)
tree80ffd4456ce36a58150f04cf14088db9960fc0c3 /EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
parent91aac0e4668b80f99d4d8f1f92225a3745d83dbd (diff)
downloadedk2-platforms-e5bce2758f79f8b1d5a5466d48ff482b1b06670e.tar.xz
Removed extra typedefs on structures to remove error with gcc compiler.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4928 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h')
-rw-r--r--EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h b/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
index d5ed15f232..5c08d5a0ce 100644
--- a/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
+++ b/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
@@ -581,13 +581,13 @@ EFI_STATUS
//
// DebugSupport protocol definition
//
-typedef struct _EFI_DEBUG_SUPPORT_PROTOCOL {
+struct _EFI_DEBUG_SUPPORT_PROTOCOL {
EFI_INSTRUCTION_SET_ARCHITECTURE Isa;
EFI_GET_MAXIMUM_PROCESSOR_INDEX GetMaximumProcessorIndex;
EFI_REGISTER_PERIODIC_CALLBACK RegisterPeriodicCallback;
EFI_REGISTER_EXCEPTION_CALLBACK RegisterExceptionCallback;
EFI_INVALIDATE_INSTRUCTION_CACHE InvalidateInstructionCache;
-} EFI_DEBUG_SUPPORT_PROTOCOL;
+};
extern EFI_GUID gEfiDebugSupportProtocolGuid;