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

edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/Reset/Reset.h:
* Changed name of colliding function pointer typedef.


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4930 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten
2008-03-20 20:54:38 +00:00
parent 9c09284182
commit 8cdb2112e2
26 changed files with 52 additions and 52 deletions

View File

@ -83,13 +83,13 @@ EFI_STATUS
IN EFI_PEI_SMBUS_NOTIFY2_FUNCTION NotifyFunction
);
typedef struct _EFI_PEI_SMBUS2_PPI {
struct _EFI_PEI_SMBUS2_PPI {
EFI_PEI_SMBUS2_PPI_EXECUTE_OPERATION Execute;
EFI_PEI_SMBUS2_PPI_ARP_DEVICE ArpDevice;
EFI_PEI_SMBUS2_PPI_GET_ARP_MAP GetArpMap;
EFI_PEI_SMBUS2_PPI_NOTIFY Notify;
EFI_GUID Identifier;
} EFI_PEI_SMBUS2_PPI;
};
extern EFI_GUID gPeiSmbus2PpiGuid;