diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-25 03:05:30 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-25 03:05:30 +0000 |
commit | 9166ece0da002e189f13a326ed19e141d37dea37 (patch) | |
tree | 2a79b9135da1269d22c82414af191867b5234e69 /MdePkg | |
parent | 1fcf530c941680ef11adef9949ae518a71ab785b (diff) | |
download | edk2-platforms-9166ece0da002e189f13a326ed19e141d37dea37.tar.xz |
Update device path type value for PI Firmware volume device & Firmware file device path.
This used to be a conflict between UEFI spec & PI spec and was fixed by UEFI errata.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4632 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Protocol/DevicePath.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/DevicePath.h b/MdePkg/Include/Protocol/DevicePath.h index cabad21436..47948d6d7b 100644 --- a/MdePkg/Include/Protocol/DevicePath.h +++ b/MdePkg/Include/Protocol/DevicePath.h @@ -373,14 +373,14 @@ typedef struct { } MEDIA_PROTOCOL_DEVICE_PATH;
-#define MEDIA_PIWG_FW_VOL_DP 0x6
+#define MEDIA_PIWG_FW_VOL_DP 0x7
typedef struct {
EFI_DEVICE_PATH_PROTOCOL Header;
EFI_GUID FvName;
} MEDIA_FW_VOL_DEVICE_PATH;
-#define MEDIA_PIWG_FW_FILE_DP 0x7
+#define MEDIA_PIWG_FW_FILE_DP 0x6
typedef struct {
EFI_DEVICE_PATH_PROTOCOL Header;
EFI_GUID FvFileName;
|