diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-20 20:45:58 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-20 20:45:58 +0000 |
commit | 9c092841829b153eef01007ddb5df50e87f9110f (patch) | |
tree | 8197332e397050685d3512caba1beacbf35f5d77 /EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService | |
parent | e5bce2758f79f8b1d5a5466d48ff482b1b06670e (diff) | |
download | edk2-platforms-9c092841829b153eef01007ddb5df50e87f9110f.tar.xz |
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
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService/ExtendedSalBootService.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService/ExtendedSalBootService.h b/EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService/ExtendedSalBootService.h index 8c7e1053cb..b87b063945 100644 --- a/EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService/ExtendedSalBootService.h +++ b/EdkCompatibilityPkg/Foundation/Protocol/ExtendedSalBootService/ExtendedSalBootService.h @@ -105,13 +105,13 @@ EFI_STATUS //
// Extended Sal Boot Service Protocol Interface
//
-typedef struct _EXTENDED_SAL_BOOT_SERVICE_PROTOCOL{
+struct _EXTENDED_SAL_BOOT_SERVICE_PROTOCOL {
EXTENDED_SAL_ADD_SST_INFO AddSalSystemTableInfo;
EXTENDED_SAL_ADD_SST_ENTRY AddSalSystemTableEntry;
EXTENDED_SAL_REGISTER_INTERNAL_PROC AddExtendedSalProc;
SAL_EXTENDED_SAL_PROC ExtendedSalProc;
SAL_PROC SalProc;
-} EXTENDED_SAL_BOOT_SERVICE_PROTOCOL;
+};
extern EFI_GUID gEfiExtendedSalBootServiceProtocolGuid;
|