]> git.proxmox.com Git - mirror_edk2.git/commitdiff
FatPkg/EnhancedFatDxe: Remove the file which is not used
authorDandan Bi <dandan.bi@intel.com>
Mon, 12 Dec 2016 03:08:39 +0000 (11:08 +0800)
committerRuiyu Ni <ruiyu.ni@intel.com>
Wed, 14 Dec 2016 08:19:19 +0000 (16:19 +0800)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
FatPkg/EnhancedFatDxe/Debug.c [deleted file]

diff --git a/FatPkg/EnhancedFatDxe/Debug.c b/FatPkg/EnhancedFatDxe/Debug.c
deleted file mode 100644 (file)
index ad23786..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/** @file\r
-  Debug functions for fat driver\r
-\r
-Copyright (c) 2005, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials are licensed and made available\r
-under the terms and conditions of the BSD License which accompanies this\r
-distribution. The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
-**/\r
-\r
-#include "Fat.h"\r
-\r
-/**\r
-\r
-  Dump all the FAT Entry of the FAT table in the volume.\r
-\r
-  @param  Volume - The volume whose FAT info will be dumped\r
-\r
-**/\r
-VOID\r
-FatDumpFatTable (\r
-  IN FAT_VOLUME   *Volume\r
-  )\r
-{\r
-  UINTN   EntryValue;\r
-  UINTN   MaxIndex;\r
-  UINTN   Index;\r
-  CHAR16  *Pointer;\r
-\r
-  MaxIndex = Volume->MaxCluster + 2;\r
-\r
-  Print (L"Dump of Fat Table, MaxCluster %x\n", MaxIndex);\r
-  for (Index = 0; Index < MaxIndex; Index++) {\r
-    EntryValue = FatGetFatEntry (Volume, Index);\r
-    if (EntryValue != FAT_CLUSTER_FREE) {\r
-      Pointer = NULL;\r
-      switch (EntryValue) {\r
-      case FAT_CLUSTER_RESERVED:\r
-        Pointer = L"RESREVED";\r
-        break;\r
-\r
-      case FAT_CLUSTER_BAD:\r
-        Pointer = L"BAD";\r
-        break;\r
-      }\r
-\r
-      if (FAT_END_OF_FAT_CHAIN (EntryValue)) {\r
-        Pointer = L"LAST";\r
-      }\r
-\r
-      if (Pointer != NULL) {\r
-        Print (L"Entry %x = %s\n", Index, Pointer);\r
-      } else {\r
-        Print (L"Entry %x = %x\n", Index, EntryValue);\r
-      }\r
-    }\r
-  }\r
-}\r