From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (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 8C75F81FBC for ; Thu, 8 Dec 2016 02:55:25 -0800 (PST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP; 08 Dec 2016 02:55:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,319,1477983600"; d="scan'208";a="1079171118" Received: from shwdeopenpsi114.ccr.corp.intel.com ([10.239.157.135]) by fmsmga001.fm.intel.com with ESMTP; 08 Dec 2016 02:55:00 -0800 From: Dandan Bi To: edk2-devel@lists.01.org Cc: Ruiyu Ni Date: Thu, 8 Dec 2016 18:54:27 +0800 Message-Id: <1481194467-75920-9-git-send-email-dandan.bi@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 In-Reply-To: <1481194467-75920-1-git-send-email-dandan.bi@intel.com> References: <1481194467-75920-1-git-send-email-dandan.bi@intel.com> Subject: [patch 8/8] FatPkg: Fix format issues in dec/inf/dsc files 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, 08 Dec 2016 10:55:25 -0000 Cc: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi --- FatPkg/EnhancedFatDxe/Fat.inf | 2 +- FatPkg/FatPei/FatPei.inf | 6 +++--- FatPkg/FatPkg.dec | 1 - FatPkg/FatPkg.dsc | 3 +-- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/FatPkg/EnhancedFatDxe/Fat.inf b/FatPkg/EnhancedFatDxe/Fat.inf index 158f34c..e7044cd 100644 --- a/FatPkg/EnhancedFatDxe/Fat.inf +++ b/FatPkg/EnhancedFatDxe/Fat.inf @@ -1,7 +1,7 @@ ## @file -# Component description file for FAT module. +# Component Description File for FAT module. # # This UEFI driver detects the FAT file system in the disk. # It also produces the Simple File System protocol for the consumer to # perform file and directory operations on the disk. # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
diff --git a/FatPkg/FatPei/FatPei.inf b/FatPkg/FatPei/FatPei.inf index 1409e28..273f72d 100644 --- a/FatPkg/FatPei/FatPei.inf +++ b/FatPkg/FatPei/FatPei.inf @@ -59,13 +59,13 @@ [Guids] gRecoveryOnFatIdeDiskGuid ## SOMETIMES_CONSUMES ## UNDEFINED gRecoveryOnFatFloppyDiskGuid ## SOMETIMES_CONSUMES ## UNDEFINED [Ppis] - gEfiPeiVirtualBlockIoPpiGuid # PPI_NOTIFY SOMETIMES_CONSUMED - gEfiPeiVirtualBlockIo2PpiGuid # PPI_NOTIFY SOMETIMES_CONSUMED - gEfiPeiDeviceRecoveryModulePpiGuid # SOMETIMES_PRODUCED + gEfiPeiVirtualBlockIoPpiGuid ## SOMETIMES_CONSUMES PPI_NOTIFY + gEfiPeiVirtualBlockIo2PpiGuid ## SOMETIMES_CONSUMES PPI_NOTIFY + gEfiPeiDeviceRecoveryModulePpiGuid ## SOMETIMES_PRODUCES [FeaturePcd] gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES diff --git a/FatPkg/FatPkg.dec b/FatPkg/FatPkg.dec index e898d95..8bdddb1 100644 --- a/FatPkg/FatPkg.dec +++ b/FatPkg/FatPkg.dec @@ -1,7 +1,6 @@ ## @file -# # FAT Package # # FAT 32 Driver # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
# diff --git a/FatPkg/FatPkg.dsc b/FatPkg/FatPkg.dsc index d654120..841201c 100644 --- a/FatPkg/FatPkg.dsc +++ b/FatPkg/FatPkg.dsc @@ -1,8 +1,7 @@ ## @file -# -# Build Binary Enhanced Fat Driver Modules +# Build Binary Enhanced Fat Driver Modules. # # This Platform file is used to generate the Binary Fat Drivers # for EDK II Prime release. # Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.
# -- 1.9.5.msysgit.1