summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2018-01-31 17:03:37 +0800
committerLiming Gao <liming.gao@intel.com>2018-02-01 10:09:49 +0800
commit83ba30c5a3e4b285bc2be99308cbe5fcfb1d0e16 (patch)
tree9d0949131ccd8f37b92494091b7a934728ce3817
parenta5a0f73dd2797d919ca7f50ad89fa6b6e329a947 (diff)
downloadedk2-83ba30c5a3e4b285bc2be99308cbe5fcfb1d0e16.tar.gz
edk2-83ba30c5a3e4b285bc2be99308cbe5fcfb1d0e16.tar.bz2
edk2-83ba30c5a3e4b285bc2be99308cbe5fcfb1d0e16.zip
BaseTools CommonLib: Remove the unnecessary print message in PcdValueCommon
Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
-rw-r--r--BaseTools/Source/C/Common/PcdValueCommon.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/BaseTools/Source/C/Common/PcdValueCommon.c b/BaseTools/Source/C/Common/PcdValueCommon.c
index 92328daa16..210f87b8b5 100644
--- a/BaseTools/Source/C/Common/PcdValueCommon.c
+++ b/BaseTools/Source/C/Common/PcdValueCommon.c
@@ -330,9 +330,7 @@ Returns:
break;
case PcdDataTypePointer:
Value = &PcdList[Index].Value[1];
- printf ("Value = %s\n", PcdList[Index].Value);
for (*Size = 0, Byte = (UINT8) strtoul(Value, &End, 16); Value != End; Byte = (UINT8) strtoul(Value, &End, 16), *Size = *Size + 1) {
- printf("%x\n", Byte);
Value = End + 1;
}
Buffer = malloc(*Size + 1);
@@ -401,7 +399,6 @@ Returns:
PcdList[Index].Value = malloc(Size * 5 + 3);
PcdList[Index].Value[0] = '{';
for (ValueIndex = 0; ValueIndex < Size; ValueIndex++) {
- printf("Value[%d] = %02x\n", ValueIndex, Value[ValueIndex]);
sprintf(&PcdList[Index].Value[1 + ValueIndex * 5], "0x%02x,", Value[ValueIndex]);
}
PcdList[Index].Value[1 + Size * 5 - 1] = '}';
@@ -724,15 +721,11 @@ Returns:
if (*InputFileName == NULL) {
fprintf (stderr, "Missing option. Input files is not specified\n");
exit (EXIT_FAILURE);
- } else {
- printf ("Input file name is %s\n", *InputFileName);
}
if (*OutputFileName == NULL) {
fprintf (stderr, "Missing option. Output file is not specified\n");
exit (EXIT_FAILURE);
- } else {
- printf ("Output file name is %s\n", *OutputFileName);
}
}
@@ -761,7 +754,6 @@ Returns:
UINT8 *FileBuffer;
UINT32 FileSize;
- printf ("PCD tool start.\n");
InputFileName = NULL;
OutputFileName = NULL;
@@ -790,7 +782,5 @@ Returns:
//
WriteOutputFile (OutputFileName);
- printf ("PCD tool done.\n");
-
exit (EXIT_SUCCESS);
}