From: qhuang8 Date: Fri, 25 Jan 2008 03:05:30 +0000 (+0000) Subject: Update device path type value for PI Firmware volume device & Firmware file device... X-Git-Tag: edk2-stable201903~21557 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=9166ece0da002e189f13a326ed19e141d37dea37;p=mirror_edk2.git 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 --- 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;