From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (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 D489E82192 for ; Tue, 13 Dec 2016 00:43:44 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP; 13 Dec 2016 00:43:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,340,1477983600"; d="scan'208";a="1098433250" Received: from shwdeopenpsi114.ccr.corp.intel.com ([10.239.157.135]) by fmsmga002.fm.intel.com with ESMTP; 13 Dec 2016 00:43:43 -0800 From: Dandan Bi To: edk2-devel@lists.01.org Cc: Jiewen Yao , Jeff Fan Date: Tue, 13 Dec 2016 16:40:24 +0800 Message-Id: <1481618428-101904-15-git-send-email-dandan.bi@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 In-Reply-To: <1481618428-101904-1-git-send-email-dandan.bi@intel.com> References: <1481618428-101904-1-git-send-email-dandan.bi@intel.com> Subject: [patch 14/18] UefiCpuPkg/MicrocodeUpdateDxe: Fix coding style issues in INF file 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: Tue, 13 Dec 2016 08:43:44 -0000 1. Add MicrocodeUpdate.h to the [Sources] section. 2. Fix the incorrect Guid/Protocol format issues. Cc: Jiewen Yao Cc: Jeff Fan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi --- UefiCpuPkg/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/UefiCpuPkg/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf b/UefiCpuPkg/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf index 437d300..7aae348 100644 --- a/UefiCpuPkg/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf +++ b/UefiCpuPkg/Feature/Capsule/MicrocodeUpdateDxe/MicrocodeUpdateDxe.inf @@ -28,10 +28,11 @@ [Defines] # # VALID_ARCHITECTURES = X64 # [Sources] + MicrocodeUpdate.h MicrocodeFmp.c MicrocodeUpdate.c [Packages] MdePkg/MdePkg.dec @@ -49,14 +50,14 @@ [LibraryClasses] UefiRuntimeServicesTableLib UefiDriverEntryPoint MicrocodeFlashAccessLib [Guids] - gMicrocodeFmpImageTypeIdGuid + gMicrocodeFmpImageTypeIdGuid ## CONSUMES ## GUID [Protocols] - gEfiFirmwareManagementProtocolGuid ## SOMTIMES_PRODUCE + gEfiFirmwareManagementProtocolGuid ## PRODUCES [Pcd] gUefiCpuPkgTokenSpaceGuid.PcdCpuMicrocodePatchAddress ## CONSUMES gUefiCpuPkgTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize ## CONSUMES -- 1.9.5.msysgit.1