Removed extra typedefs on structures to fix error generated by gcc.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4929 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten
2008-03-20 20:45:58 +00:00
parent e5bce2758f
commit 9c09284182
29 changed files with 60 additions and 60 deletions

View File

@@ -240,7 +240,7 @@ EFI_STATUS
OUT BOOLEAN *Overlap
);
typedef struct _EFI_PLATFORM_MEMTEST_PROTOCOL {
struct _EFI_PLATFORM_MEMTEST_PROTOCOL {
EFI_PLATFORM_MEMTEST_NOTIFY_PHASE NotifyPhase;
EFI_PLATFORM_MEMTEST_GET_PLATFORM_INFO GetPlatformInfo;
EFI_PLATFORM_MEMTEST_GET_NEXT_DIMM_INFO GetNextDimmInfo;
@@ -252,7 +252,7 @@ typedef struct _EFI_PLATFORM_MEMTEST_PROTOCOL {
EFI_PLATFORM_MEMTEST_CLEAR_ERROR ClearError;
EFI_PLATFORM_MEMTEST_DISABLE_DIMM DisableDimm;
EFI_PLATFORM_MEMTEST_OVERLAP Overlap;
} EFI_PLATFORM_MEMTEST_PROTOCOL;
};