From nobody Fri Nov 1 10:22:51 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1517389423480300.6453218776469; Wed, 31 Jan 2018 01:03:43 -0800 (PST) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id E3BE02215BDA1; Wed, 31 Jan 2018 00:58:05 -0800 (PST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 464C92215BD87 for ; Wed, 31 Jan 2018 00:58:05 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Jan 2018 01:03:41 -0800 Received: from shwde7172.ccr.corp.intel.com ([10.239.9.15]) by orsmga004.jf.intel.com with ESMTP; 31 Jan 2018 01:03:39 -0800 X-Original-To: edk2-devel@lists.01.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.24; helo=mga09.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,439,1511856000"; d="scan'208";a="170536089" From: Liming Gao To: edk2-devel@lists.01.org Date: Wed, 31 Jan 2018 17:03:37 +0800 Message-Id: <1517389417-25112-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 Subject: [edk2] [Patch] BaseTools CommonLib: Remove the unnecessary print message in PcdValueCommon X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Reviewed-by: Yonghong Zhu =20 --- BaseTools/Source/C/Common/PcdValueCommon.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/BaseTools/Source/C/Common/PcdValueCommon.c b/BaseTools/Source/= C/Common/PcdValueCommon.c index 92328da..210f87b 100644 --- a/BaseTools/Source/C/Common/PcdValueCommon.c +++ b/BaseTools/Source/C/Common/PcdValueCommon.c @@ -330,9 +330,7 @@ Returns: break; case PcdDataTypePointer: Value =3D &PcdList[Index].Value[1]; - printf ("Value =3D %s\n", PcdList[Index].Value); for (*Size =3D 0, Byte =3D (UINT8) strtoul(Value, &End, 16); Value != =3D End; Byte =3D (UINT8) strtoul(Value, &End, 16), *Size =3D *Size + 1) { - printf("%x\n", Byte); Value =3D End + 1; } Buffer =3D malloc(*Size + 1); @@ -401,7 +399,6 @@ Returns: PcdList[Index].Value =3D malloc(Size * 5 + 3); PcdList[Index].Value[0] =3D '{'; for (ValueIndex =3D 0; ValueIndex < Size; ValueIndex++) { - printf("Value[%d] =3D %02x\n", ValueIndex, Value[ValueIndex]); sprintf(&PcdList[Index].Value[1 + ValueIndex * 5], "0x%02x,", Value[= ValueIndex]); } PcdList[Index].Value[1 + Size * 5 - 1] =3D '}'; @@ -724,15 +721,11 @@ Returns: if (*InputFileName =3D=3D NULL) { fprintf (stderr, "Missing option. Input files is not specified\n"); exit (EXIT_FAILURE); - } else { - printf ("Input file name is %s\n", *InputFileName); } =20 if (*OutputFileName =3D=3D NULL) { fprintf (stderr, "Missing option. Output file is not specified\n"); exit (EXIT_FAILURE); - } else { - printf ("Output file name is %s\n", *OutputFileName); } } =20 @@ -761,7 +754,6 @@ Returns: UINT8 *FileBuffer; UINT32 FileSize; =20 - printf ("PCD tool start.\n"); InputFileName =3D NULL; OutputFileName =3D NULL; =20 @@ -790,7 +782,5 @@ Returns: // WriteOutputFile (OutputFileName); =20 - printf ("PCD tool done.\n"); - exit (EXIT_SUCCESS); } --=20 2.8.0.windows.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel