summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/GenFds/FdfParser.py
diff options
context:
space:
mode:
authorCarsey, Jaben <jaben.carsey@intel.com>2018-04-11 09:14:05 -0700
committerYonghong Zhu <yonghong.zhu@intel.com>2018-04-23 11:11:20 +0800
commit656d2539be34ea0ce356857ffd4f9decdf0476b2 (patch)
treed23ecf3f2009b6c496b2bd5ac4f38a97bb6592b5 /BaseTools/Source/Python/GenFds/FdfParser.py
parentb491aa95ab9e2e831f658bb74bf9ed67bff082ac (diff)
downloadedk2-656d2539be34ea0ce356857ffd4f9decdf0476b2.tar.gz
edk2-656d2539be34ea0ce356857ffd4f9decdf0476b2.tar.bz2
edk2-656d2539be34ea0ce356857ffd4f9decdf0476b2.zip
BaseTools: replace 'UINT8','UINT16','UINT32','UINT64','VOID*' with shared constants.
Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/GenFds/FdfParser.py')
-rw-r--r--BaseTools/Source/Python/GenFds/FdfParser.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/BaseTools/Source/Python/GenFds/FdfParser.py b/BaseTools/Source/Python/GenFds/FdfParser.py
index a106253527..6baf875833 100644
--- a/BaseTools/Source/Python/GenFds/FdfParser.py
+++ b/BaseTools/Source/Python/GenFds/FdfParser.py
@@ -1134,7 +1134,7 @@ class FdfParser:
@staticmethod
def __Verify(Name, Value, Scope):
- if Scope in ['UINT64', 'UINT8']:
+ if Scope in [TAB_UINT64, TAB_UINT8]:
ValueNumber = 0
try:
ValueNumber = int (Value, 0)
@@ -1142,10 +1142,10 @@ class FdfParser:
EdkLogger.error("FdfParser", FORMAT_INVALID, "The value is not valid dec or hex number for %s." % Name)
if ValueNumber < 0:
EdkLogger.error("FdfParser", FORMAT_INVALID, "The value can't be set to negative value for %s." % Name)
- if Scope == 'UINT64':
+ if Scope == TAB_UINT64:
if ValueNumber >= 0x10000000000000000:
EdkLogger.error("FdfParser", FORMAT_INVALID, "Too large value for %s." % Name)
- if Scope == 'UINT8':
+ if Scope == TAB_UINT8:
if ValueNumber >= 0x100:
EdkLogger.error("FdfParser", FORMAT_INVALID, "Too large value for %s." % Name)
return True