X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FChangeLog.txt;h=11ee2e40c1ccb7b2bc1eceab56222e6c608a3b4b;hb=f8d8f5473ee36be1a59e8dab717bb2f840c8b7a8;hp=1b01b6cdeb611cf26b2889892f21f170bf8a3a10;hpb=5384e3d45b900b93be9eb9d5788c235c77a4efe9;p=mirror_edk2.git diff --git a/MdePkg/ChangeLog.txt b/MdePkg/ChangeLog.txt index 1b01b6cdeb..11ee2e40c1 100644 --- a/MdePkg/ChangeLog.txt +++ b/MdePkg/ChangeLog.txt @@ -274,3 +274,25 @@ Possible Impacts: All source codes that refer to EFI_KEY_OPTION.KeyOptions must be changed to use EFI_KEY_OPTION.KeyData from UEFI specification. +EDK_7057: Non-Compatible: qhuang8 + Retired the following macros defined in MdePkg/Include/Uefi/UefiBaseType.h: + EFI_SIGNATURE_16, EFI_SIGNATURE_32, EFI_SIGNATURE_64, EFI_FIELD_OFFSET, EFI_MAX_BIT & EFI_MAX_ADDRESS + +Possible impacts: + All EDKII native source code needs to update to use the equivelent macros (without "EFI_" prefix except for + EFI_FIELD_OFFSET) defined in MdePkg\Include\Base.h and MdePkg\Include\$(ARCH)\ProcessorBinding.h: + EFI_SIGNATURE_16 -> SIGNATURE_16 + EFI_SIGNATURE_32 -> SIGNATURE_32 + EFI_SIGNATURE_64 -> SIGNATURE_64 + EFI_FIELD_OFFSET -> OFFSET_OF + EFI_MAX_BIT -> MAX_BIT + EFI_MAX_ADDRESS -> MAX_ADDRESS + +EDK_7467: Non-Compatible: qhuang8 + Remove the macro value TIME_OUT defined in MdePkg/Include/Uefi/UefiUsbLib.h and replace it with a new PCD entry: + gEfiMdePkgTokenSpaceGuid.PcdUsbTransferTimeoutValue + +Possible impacts: + All modules depending on macro TIME_OUT in MdePkg/Include/Uefi/UefiUsbLib.h should use PcdGet32 (PcdUsbTransferTimeoutValue) + for the USB transaction, include "PcdLib" in INF [LibraryClasses] section and add "#include " in module + source. \ No newline at end of file