From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (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 7CB6282109 for ; Sun, 11 Dec 2016 22:09:32 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP; 11 Dec 2016 22:09:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,334,1477983600"; d="scan'208";a="39134509" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by orsmga004.jf.intel.com with ESMTP; 11 Dec 2016 22:09:31 -0800 Received: from fmsmsx113.amr.corp.intel.com (10.18.116.7) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.248.2; Sun, 11 Dec 2016 22:09:31 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by FMSMSX113.amr.corp.intel.com (10.18.116.7) with Microsoft SMTP Server (TLS) id 14.3.248.2; Sun, 11 Dec 2016 22:09:31 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.11]) by shsmsx102.ccr.corp.intel.com ([169.254.2.54]) with mapi id 14.03.0248.002; Mon, 12 Dec 2016 14:09:28 +0800 From: "Ni, Ruiyu" To: "Bi, Dandan" , "edk2-devel@lists.01.org" Thread-Topic: [edk2] [patch] FatPkg/EnhancedFatDxe: Remove the file which is not used Thread-Index: AQHSVCalm1SoJNWMLEOK5KRDvcWiuaED0/Ug Date: Mon, 12 Dec 2016 06:09:27 +0000 Deferred-Delivery: Mon, 12 Dec 2016 06:09:00 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D5B826BC6@SHSMSX103.ccr.corp.intel.com> References: <1481512769-91960-1-git-send-email-dandan.bi@intel.com> In-Reply-To: <1481512769-91960-1-git-send-email-dandan.bi@intel.com> Accept-Language: en-US, zh-CN X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [patch] FatPkg/EnhancedFatDxe: Remove the file which is not used 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: Mon, 12 Dec 2016 06:09:32 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Ruiyu Ni Thanks/Ray > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of > Dandan Bi > Sent: Monday, December 12, 2016 11:19 AM > To: edk2-devel@lists.01.org > Cc: Ni, Ruiyu > Subject: [edk2] [patch] FatPkg/EnhancedFatDxe: Remove the file which is > not used >=20 > Cc: Ruiyu Ni > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Dandan Bi > --- > FatPkg/EnhancedFatDxe/Debug.c | 62 -------------------------------------= ------ > 1 file changed, 62 deletions(-) > delete mode 100644 FatPkg/EnhancedFatDxe/Debug.c >=20 > diff --git a/FatPkg/EnhancedFatDxe/Debug.c > b/FatPkg/EnhancedFatDxe/Debug.c deleted file mode 100644 index > ad23786..0000000 > --- a/FatPkg/EnhancedFatDxe/Debug.c > +++ /dev/null > @@ -1,62 +0,0 @@ > -/** @file > - Debug functions for fat driver > - > -Copyright (c) 2005, Intel Corporation. All rights reserved.
-This pr= ogram > and the accompanying materials are licensed and made available -under the > terms and conditions of the BSD License which accompanies this -distribut= ion. > The full text of the license may be found at - > http://opensource.org/licenses/bsd-license.php > - > -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" > BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER > EXPRESS OR IMPLIED. > - > -**/ > - > -#include "Fat.h" > - > -/** > - > - Dump all the FAT Entry of the FAT table in the volume. > - > - @param Volume - The volume whose FAT info will be dumped > - > -**/ > -VOID > -FatDumpFatTable ( > - IN FAT_VOLUME *Volume > - ) > -{ > - UINTN EntryValue; > - UINTN MaxIndex; > - UINTN Index; > - CHAR16 *Pointer; > - > - MaxIndex =3D Volume->MaxCluster + 2; > - > - Print (L"Dump of Fat Table, MaxCluster %x\n", MaxIndex); > - for (Index =3D 0; Index < MaxIndex; Index++) { > - EntryValue =3D FatGetFatEntry (Volume, Index); > - if (EntryValue !=3D FAT_CLUSTER_FREE) { > - Pointer =3D NULL; > - switch (EntryValue) { > - case FAT_CLUSTER_RESERVED: > - Pointer =3D L"RESREVED"; > - break; > - > - case FAT_CLUSTER_BAD: > - Pointer =3D L"BAD"; > - break; > - } > - > - if (FAT_END_OF_FAT_CHAIN (EntryValue)) { > - Pointer =3D L"LAST"; > - } > - > - if (Pointer !=3D NULL) { > - Print (L"Entry %x =3D %s\n", Index, Pointer); > - } else { > - Print (L"Entry %x =3D %x\n", Index, EntryValue); > - } > - } > - } > -} > -- > 1.9.5.msysgit.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel