diff options
author | yshang1 <yshang1@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-06-21 07:14:45 +0000 |
---|---|---|
committer | yshang1 <yshang1@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-06-21 07:14:45 +0000 |
commit | 53f2d96e2e17ec78b040729127456ad9c65ac5c6 (patch) | |
tree | da2c88b8f390c007df5b19713db99a1741b15f61 /MdePkg | |
parent | 159177dcdcc6e27514ec47490214bee525dea132 (diff) | |
download | edk2-platforms-53f2d96e2e17ec78b040729127456ad9c65ac5c6.tar.xz |
Fixed PPI GUID name to follow PI specification.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2695 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Ppi/BootInRecoveryMode.h | 2 | ||||
-rw-r--r-- | MdePkg/Include/Ppi/Security2.h | 2 | ||||
-rw-r--r-- | MdePkg/Include/Ppi/Smbus2.h | 12 | ||||
-rw-r--r-- | MdePkg/Include/Ppi/TemporaryRamSupport.h | 2 |
4 files changed, 3 insertions, 15 deletions
diff --git a/MdePkg/Include/Ppi/BootInRecoveryMode.h b/MdePkg/Include/Ppi/BootInRecoveryMode.h index 2ffe2d80e5..9a44f813b0 100644 --- a/MdePkg/Include/Ppi/BootInRecoveryMode.h +++ b/MdePkg/Include/Ppi/BootInRecoveryMode.h @@ -22,7 +22,7 @@ #ifndef __BOOT_IN_RECOVERY_MODE_PPI_H__
#define __BOOT_IN_RECOVERY_MODE_PPI_H__
-#define EFI_PEI_BOOT_IN_RECOVERY_MODE_PEIM_PPI \
+#define EFI_PEI_BOOT_IN_RECOVERY_MODE_PPI \
{ \
0x17ee496a, 0xd8e4, 0x4b9a, {0x94, 0xd1, 0xce, 0x82, 0x72, 0x30, 0x8, 0x50 } \
}
diff --git a/MdePkg/Include/Ppi/Security2.h b/MdePkg/Include/Ppi/Security2.h index 4fdb900f2e..36213be00d 100644 --- a/MdePkg/Include/Ppi/Security2.h +++ b/MdePkg/Include/Ppi/Security2.h @@ -25,7 +25,7 @@ { 0xdcd0be23, 0x9586, 0x40f4, { 0xb6, 0x43, 0x6, 0x52, 0x2c, 0xed, 0x4e, 0xde } }
-typedef _EFI_PEI_SECURITY2_PPI EFI_PEI_SECURITY2_PPI;
+typedef struct _EFI_PEI_SECURITY2_PPI EFI_PEI_SECURITY2_PPI;
/**
diff --git a/MdePkg/Include/Ppi/Smbus2.h b/MdePkg/Include/Ppi/Smbus2.h index 42246e10f2..c61d5c1941 100644 --- a/MdePkg/Include/Ppi/Smbus2.h +++ b/MdePkg/Include/Ppi/Smbus2.h @@ -92,18 +92,6 @@ EFI_STATUS IN OUT VOID *Buffer
);
-
-typedef struct {
- UINT32 VendorSpecificId;
- UINT16 SubsystemDeviceId;
- UINT16 SubsystemVendorId;
- UINT16 Interface;
- UINT16 DeviceId;
- UINT16 VendorId;
- UINT8 VendorRevision;
- UINT8 DeviceCapabilities;
-} EFI_SMBUS_UDID;
-
/**
CallBack function can be registered in EFI_PEI_SMBUS_PPI_NOTIFY.
diff --git a/MdePkg/Include/Ppi/TemporaryRamSupport.h b/MdePkg/Include/Ppi/TemporaryRamSupport.h index 97ff7ede82..7ae6b91ed5 100644 --- a/MdePkg/Include/Ppi/TemporaryRamSupport.h +++ b/MdePkg/Include/Ppi/TemporaryRamSupport.h @@ -62,6 +62,6 @@ typedef struct { TEMPORARY_RAM_MIGRATION TemporaryRamMigration;
} TEMPORARY_RAM_SUPPORT_PPI;
-extern EFI_GUID gEfiPeiTemporaryRamSupportPpiGuid;
+extern EFI_GUID gEfiTemporaryRamSupportPpiGuid;
#endif
|