diff options
author | ajfish <ajfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-19 12:24:11 +0000 |
---|---|---|
committer | ajfish <ajfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-19 12:24:11 +0000 |
commit | a537f1483c1312f9a937b7ec854396170006ff8d (patch) | |
tree | 8a06d04fd6fb69a2df8aaea1bd3cc520619511b6 /MdePkg/Include/Uefi | |
parent | 58c5839f2cd597dc0c345000d6482b38dfb42a4b (diff) | |
download | edk2-platforms-a537f1483c1312f9a937b7ec854396170006ff8d.tar.xz |
Fixed some naming issues and update to the EDK II name. I also fixed an issue with the UEFI library forcing UEFI.h to include Tinao protocols. I make the UEFI library a DXE library so it would get the correct includes.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1048 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Uefi')
-rw-r--r-- | MdePkg/Include/Uefi/UefiSpec.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Include/Uefi/UefiSpec.h b/MdePkg/Include/Uefi/UefiSpec.h index 3410ad2821..1f2862776c 100644 --- a/MdePkg/Include/Uefi/UefiSpec.h +++ b/MdePkg/Include/Uefi/UefiSpec.h @@ -2137,22 +2137,22 @@ typedef struct { typedef struct {
EFI_DEVICE_PATH_PROTOCOL Header;
- EFI_GUID PiwgSpecificDevicePath;
+ EFI_GUID TianoSpecificDevicePath;
UINT32 Type;
-} PIWG_DEVICE_PATH;
+} TIANO_DEVICE_PATH;
-#define PIWG_MEDIA_FW_VOL_FILEPATH_DEVICE_PATH_TYPE 0x01
+#define TIANO_MEDIA_FW_VOL_FILEPATH_DEVICE_PATH_TYPE 0x01
typedef struct {
- PIWG_DEVICE_PATH Piwg;
+ TIANO_DEVICE_PATH Tiano;
EFI_GUID NameGuid;
} MEDIA_FW_VOL_FILEPATH_DEVICE_PATH;
//
// Place holder for a future extension
//
-#define PIWG_MEDIAFW_VOL_DEVICE_PATH_TYPE 0x02
+#define TIANO_MEDIAFW_VOL_DEVICE_PATH_TYPE 0x02
typedef struct {
- PIWG_DEVICE_PATH Piwg;
+ TIANO_DEVICE_PATH Tiano;
EFI_GUID VolumeGuid;
} MEDIA_FW_VOL_DEVICE_PATH;
|