]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/Include/Library/EfiFileLib.h
EmbeddedPkg: Fix mispellings
[mirror_edk2.git] / EmbeddedPkg / Include / Library / EfiFileLib.h
index d50a2f367935493ce44954ade9d1aee4b7f92d7c..033375cea04011bc85e1a4edc1c768e0321eeaa3 100644 (file)
@@ -93,7 +93,8 @@ typedef struct {
   EFI_FILE                      *FsFileHandle;    // Information valid for Fs#:\r
   EFI_FILE_SYSTEM_INFO          *FsInfo;\r
   EFI_FILE_INFO                 *FsFileInfo;\r
-  EFI_BLOCK_IO_MEDIA            FsBlockIoMedia;   // Information valid for Fs#: or B#:\r
+  EFI_BLOCK_IO_MEDIA            *FsBlockIoMedia;  // Information valid for Fs#: or B#:\r
+  EFI_BLOCK_IO_PROTOCOL         *FsBlockIo;       // Information valid for Fs#: or B#:\r
 \r
   UINTN                         DiskOffset;       // Information valid for B#:\r
 \r
@@ -117,12 +118,12 @@ typedef enum {
 \r
 /**\r
   Open a device named by PathName. The PathName includes a device name and \r
-  path seperated by a :. See file header for more details on the PathName \r
+  path separated by a :. See file header for more details on the PathName\r
   syntax. There is no checking to prevent a file from being opened more than\r
   one type. \r
 \r
   SectionType is only used to open an FV. Each file in an FV contains multiple\r
-  secitons and only the SectionType section is opened. \r
+  sections and only the SectionType section is opened.\r
 \r
   For any file that is opened with EfiOpen() must be closed with EfiClose().\r
 \r
@@ -198,7 +199,7 @@ EfiTell (
 \r
 \r
 /**\r
-  Seek to the Offset locaiton in the file. LoadFile and FV device types do\r
+  Seek to the Offset location in the file. LoadFile and FV device types do\r
   not support EfiSeek(). It is not possible to grow the file size using \r
   EfiSeek().\r
   \r
@@ -213,7 +214,7 @@ EfiTell (
 \r
 \r
   @return EFI_INVALID_PARAMETER  Stream is not an Open File\r
-  @return EFI_UNSUPPORTED        LoadFile and FV doe not support Seek\r
+  @return EFI_UNSUPPORTED        LoadFile and FV does not support Seek\r
   @return EFI_NOT_FOUND          Seek past the end of the file.\r
   @return EFI_SUCCESS            Steam closed\r
 \r
@@ -227,7 +228,7 @@ EfiSeek (
 \r
 \r
 /**\r
-  Read BufferSize bytes from the current locaiton in the file. For load file\r
+  Read BufferSize bytes from the current location in the file. For load file\r
   and FV case you must read the entire file. \r
 \r
   @param  Stream      Open File Handle\r
@@ -254,7 +255,7 @@ EfiRead (
   Read the entire file into a buffer. This routine allocates the buffer and\r
   returns it to the user full of the read data. \r
 \r
-  This is very useful for load flie where it's hard to know how big the buffer\r
+  This is very useful for load file where it's hard to know how big the buffer\r
   must be.\r
 \r
   @param  Stream      Open File Handle\r
@@ -315,7 +316,7 @@ EfiGetDeviceCounts (
   \r
 \r
 /**\r
-  Set the Curent Working Directory (CWD). If a call is made to EfiOpen () and \r
+  Set the Current Working Directory (CWD). If a call is made to EfiOpen () and\r
   the path does not contain a device name, The CWD is prepended to the path.\r
   \r
   @param  Cwd     Current Working Directory to set\r
@@ -331,7 +332,7 @@ EfiSetCwd (
   );  \r
 \r
 /**\r
-  Set the Curent Working Directory (CWD). If a call is made to EfiOpen () and \r
+  Set the Current Working Directory (CWD). If a call is made to EfiOpen () and\r
   the path does not contain a device name, The CWD is prepended to the path.\r
   \r
   @param  Cwd     Current Working Directory \r