From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by ml01.01.org (Postfix) with ESMTP id 0A7FE1A1DF2 for ; Thu, 11 Aug 2016 00:16:32 -0700 (PDT) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 11 Aug 2016 00:16:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,503,1464678000"; d="scan'208";a="863536662" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga003.jf.intel.com with ESMTP; 11 Aug 2016 00:16:31 -0700 Received: from fmsmsx112.amr.corp.intel.com (10.18.116.6) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 11 Aug 2016 00:16:29 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX112.amr.corp.intel.com (10.18.116.6) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 11 Aug 2016 00:16:29 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.147]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.116]) with mapi id 14.03.0248.002; Thu, 11 Aug 2016 15:16:27 +0800 From: "Dong, Eric" To: "Bi, Dandan" , "edk2-devel@lists.01.org" CC: "Gao, Liming" Thread-Topic: [patch] BaseTool/VfrCompile: Remove reset button opcode in CheckQuestionOpCode Thread-Index: AQHR8uTRzmilenRYMUKWwkVBwHhOiaBDWqGg Date: Thu, 11 Aug 2016 07:16:26 +0000 Message-ID: References: <1470819237-105456-1-git-send-email-dandan.bi@intel.com> In-Reply-To: <1470819237-105456-1-git-send-email-dandan.bi@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [patch] BaseTool/VfrCompile: Remove reset button opcode in CheckQuestionOpCode X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2016 07:16:32 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Eric Dong > -----Original Message----- > From: Bi, Dandan > Sent: Wednesday, August 10, 2016 4:54 PM > To: edk2-devel@lists.01.org > Cc: Gao, Liming; Dong, Eric > Subject: [patch] BaseTool/VfrCompile: Remove reset button opcode in Check= QuestionOpCode >=20 > "EFI_IFR_RESET_BUTTON_OP" is a statement, not a question, > so remove it from function CheckQuestionOpCode. >=20 > Cc: Liming Gao > Cc: Eric Dong > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Dandan Bi > --- > BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp | 1 - > 1 file changed, 1 deletion(-) >=20 > diff --git a/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp b/BaseTools/Sou= rce/C/VfrCompile/VfrFormPkg.cpp > index db1e4bd..0b7b8b1 100644 > --- a/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp > +++ b/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp > @@ -1199,11 +1199,10 @@ CIfrRecordInfoDB::CheckQuestionOpCode ( > case EFI_IFR_STRING_OP: > case EFI_IFR_DATE_OP: > case EFI_IFR_TIME_OP: > case EFI_IFR_ORDERED_LIST_OP: > case EFI_IFR_REF_OP: > - case EFI_IFR_RESET_BUTTON_OP: > return TRUE; > default: > return FALSE; > } > } > -- > 1.9.5.msysgit.1