]> git.proxmox.com Git - mirror_edk2.git/blobdiff - FatPkg/EnhancedFatDxe/Delete.c
CryptoPkg: Add Null instance of the TlsLib class
[mirror_edk2.git] / FatPkg / EnhancedFatDxe / Delete.c
index b76fe45ecae53079f6ceacb115e2f4a0d5ca3aee..b2a62b35ded8c3da37a2db48d9e466a3e796b7c5 100644 (file)
@@ -1,50 +1,29 @@
-/*++\r
+/** @file\r
+  Function that deletes a file.\r
 \r
-Copyright (c) 2005, Intel Corporation\r
-All rights reserved. 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
+Copyright (c) 2005 - 2013, Intel Corporation. All rights reserved.<BR>\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\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
-Module Name:\r
-\r
-  delete.c\r
+#include "Fat.h"\r
 \r
-Abstract:\r
+/**\r
 \r
-  Function that deletes a file\r
+  Deletes the file & Closes the file handle.\r
 \r
-Revision History\r
+  @param  FHand                    - Handle to the file to delete.\r
 \r
---*/\r
-\r
-#include "Fat.h"\r
+  @retval EFI_SUCCESS              - Delete the file successfully.\r
+  @retval EFI_WARN_DELETE_FAILURE  - Fail to delete the file.\r
 \r
+**/\r
 EFI_STATUS\r
 EFIAPI\r
 FatDelete (\r
-  IN EFI_FILE  *FHand\r
+  IN EFI_FILE_PROTOCOL  *FHand\r
   )\r
-/*++\r
-\r
-Routine Description:\r
-\r
-  Deletes the file & Closes the file handle.\r
-\r
-Arguments:\r
-\r
-  FHand                    - Handle to the file to delete.\r
-\r
-Returns:\r
-\r
-  EFI_SUCCESS              - Delete the file successfully.\r
-  EFI_WARN_DELETE_FAILURE  - Fail to delete the file.\r
-\r
---*/\r
 {\r
   FAT_IFILE   *IFile;\r
   FAT_OFILE   *OFile;\r
@@ -55,6 +34,8 @@ Returns:
   IFile = IFILE_FROM_FHAND (FHand);\r
   OFile = IFile->OFile;\r
 \r
+  FatWaitNonblockingTask (IFile);\r
+\r
   //\r
   // Lock the volume\r
   //\r
@@ -127,7 +108,7 @@ Done:
   //\r
   // Done\r
   //\r
-  Status = FatCleanupVolume (OFile->Volume, NULL, Status);\r
+  Status = FatCleanupVolume (OFile->Volume, NULL, Status, NULL);\r
   FatReleaseLock ();\r
 \r
   if (EFI_ERROR (Status)) {\r