diff options
author | Dong, Eric <eric.dong@intel.com> | 2016-08-12 10:09:48 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-08-16 10:29:37 +0800 |
commit | d35ec1e0507dc612ed6485410f12e683a726a3bf (patch) | |
tree | d52a57b373e8393c1a11b276e80db1957896dcca /MdePkg/Include | |
parent | de74668f5ea713b7e91e01318f0d15d2bf0effce (diff) | |
download | edk2-platforms-d35ec1e0507dc612ed6485410f12e683a726a3bf.tar.xz |
MdePkg: Fix guid conflict.
Update Image Decoder Protocol GUID value to fix GUID
conflict with EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_GUID.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Protocol/ImageDecoder.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/MdePkg/Include/Protocol/ImageDecoder.h b/MdePkg/Include/Protocol/ImageDecoder.h index f1985bcd21..aebb813ed6 100644 --- a/MdePkg/Include/Protocol/ImageDecoder.h +++ b/MdePkg/Include/Protocol/ImageDecoder.h @@ -18,8 +18,16 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include <Protocol/HiiImage.h>
+//
+// In UEFI 2.6 spec,this guid value is duplicate with
+// EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_GUID. Now update this guid value to
+// avoid the duplicate guid issue. So its value is not consistent with
+// UEFI spec definition now. We have proposed to update UEFI spec to
+// use this new guid. After new spec released, we will remove this
+// comments.
+//
#define EFI_HII_IMAGE_DECODER_PROTOCOL_GUID \
- { 0x2f707ebb, 0x4a1a, 0x11d4, {0x9a,0x38,0x00,0x90,0x27,0x3f,0xc1,0x4d}}
+ {0x9e66f251, 0x727c, 0x418c, { 0xbf, 0xd6, 0xc2, 0xb4, 0x25, 0x28, 0x18, 0xea }}
#define EFI_HII_IMAGE_DECODER_NAME_JPEG_GUID \
|