summaryrefslogtreecommitdiff
path: root/ArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-20 16:09:47 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-20 16:09:47 +0000
commite291948ce0b6f3439f83da5861ddd337421dc5e4 (patch)
tree970497a4d3c2200fd4d8b82b82b68236bf81d2cd /ArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch
parent2740a797df7ee56e4aa11fab46a8bc6ead91369f (diff)
downloadedk2-platforms-e291948ce0b6f3439f83da5861ddd337421dc5e4.tar.xz
ArmPlatformPkg/patches: Updated list of Pending patches after latest BaseTools sync
BaseTools-GenC-Cast-Pcd-Types.patch changes are now part of the EDK2 Basetools mainline. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12391 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch')
-rwxr-xr-xArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/ArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch b/ArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch
deleted file mode 100755
index cf40d930cf..0000000000
--- a/ArmPlatformPkg/Documentation/patches/BaseTools-GenC-Cast-Pcd-Types.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/BaseTools/Source/Python/AutoGen/GenC.py b/BaseTools/Source/Python/AutoGen/GenC.py
-index e6e8847..6a78d01 100644
---- a/BaseTools/Source/Python/AutoGen/GenC.py
-+++ b/BaseTools/Source/Python/AutoGen/GenC.py
-@@ -67,11 +67,11 @@ typedef UINT8 SKU_ID;
-
- #define PCD_TYPE_SHIFT 28
-
--#define PCD_TYPE_DATA (0x0 << PCD_TYPE_SHIFT)
--#define PCD_TYPE_HII (0x8 << PCD_TYPE_SHIFT)
--#define PCD_TYPE_VPD (0x4 << PCD_TYPE_SHIFT)
--#define PCD_TYPE_SKU_ENABLED (0x2 << PCD_TYPE_SHIFT)
--#define PCD_TYPE_STRING (0x1 << PCD_TYPE_SHIFT)
-+#define PCD_TYPE_DATA (0x0u << PCD_TYPE_SHIFT)
-+#define PCD_TYPE_HII (0x8u << PCD_TYPE_SHIFT)
-+#define PCD_TYPE_VPD (0x4u << PCD_TYPE_SHIFT)
-+#define PCD_TYPE_SKU_ENABLED (0x2u << PCD_TYPE_SHIFT)
-+#define PCD_TYPE_STRING (0x1u << PCD_TYPE_SHIFT)
-
- #define PCD_TYPE_ALL_SET (PCD_TYPE_DATA | PCD_TYPE_HII | PCD_TYPE_VPD | PCD_TYPE_SKU_ENABLED | PCD_TYPE_STRING)
-