mirror of https://github.com/acidanthera/audk.git
OvmfPkg/EmuVariableFvbRuntimeDxe: strip trailing whitespace
Cc: Jordan Justen <jordan.l.justen@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Regression-tested-by: Gary Lin <glin@suse.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
38292c0872
commit
89f385ce0a
|
@ -120,14 +120,14 @@ FvbVirtualAddressChangeEvent (
|
||||||
only for memory-mapped firmware volumes.
|
only for memory-mapped firmware volumes.
|
||||||
|
|
||||||
@param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
|
@param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
|
||||||
|
|
||||||
@param Address Pointer to a caller-allocated
|
@param Address Pointer to a caller-allocated
|
||||||
EFI_PHYSICAL_ADDRESS that, on successful
|
EFI_PHYSICAL_ADDRESS that, on successful
|
||||||
return from GetPhysicalAddress(), contains the
|
return from GetPhysicalAddress(), contains the
|
||||||
base address of the firmware volume.
|
base address of the firmware volume.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The firmware volume base address is returned.
|
@retval EFI_SUCCESS The firmware volume base address is returned.
|
||||||
|
|
||||||
@retval EFI_NOT_SUPPORTED The firmware volume is not memory mapped.
|
@retval EFI_NOT_SUPPORTED The firmware volume is not memory mapped.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
@ -168,9 +168,9 @@ FvbProtocolGetPhysicalAddress (
|
||||||
blocks in this range have a size of
|
blocks in this range have a size of
|
||||||
BlockSize.
|
BlockSize.
|
||||||
|
|
||||||
|
|
||||||
@retval EFI_SUCCESS The firmware volume base address is returned.
|
@retval EFI_SUCCESS The firmware volume base address is returned.
|
||||||
|
|
||||||
@retval EFI_INVALID_PARAMETER The requested LBA is out of range.
|
@retval EFI_INVALID_PARAMETER The requested LBA is out of range.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
@ -246,7 +246,7 @@ FvbProtocolGetAttributes (
|
||||||
settings of the firmware volume. Type
|
settings of the firmware volume. Type
|
||||||
EFI_FVB_ATTRIBUTES_2 is defined in
|
EFI_FVB_ATTRIBUTES_2 is defined in
|
||||||
EFI_FIRMWARE_VOLUME_HEADER.
|
EFI_FIRMWARE_VOLUME_HEADER.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The firmware volume attributes were returned.
|
@retval EFI_SUCCESS The firmware volume attributes were returned.
|
||||||
|
|
||||||
@retval EFI_INVALID_PARAMETER The attributes requested are in
|
@retval EFI_INVALID_PARAMETER The attributes requested are in
|
||||||
|
@ -302,7 +302,7 @@ FvbProtocolSetAttributes (
|
||||||
|
|
||||||
@retval EFI_SUCCESS The erase request was successfully
|
@retval EFI_SUCCESS The erase request was successfully
|
||||||
completed.
|
completed.
|
||||||
|
|
||||||
@retval EFI_ACCESS_DENIED The firmware volume is in the
|
@retval EFI_ACCESS_DENIED The firmware volume is in the
|
||||||
WriteDisabled state.
|
WriteDisabled state.
|
||||||
@retval EFI_DEVICE_ERROR The block device is not functioning
|
@retval EFI_DEVICE_ERROR The block device is not functioning
|
||||||
|
@ -311,7 +311,7 @@ FvbProtocolSetAttributes (
|
||||||
partially erased.
|
partially erased.
|
||||||
@retval EFI_INVALID_PARAMETER One or more of the LBAs listed
|
@retval EFI_INVALID_PARAMETER One or more of the LBAs listed
|
||||||
in the variable argument list do
|
in the variable argument list do
|
||||||
not exist in the firmware volume.
|
not exist in the firmware volume.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
@ -420,29 +420,29 @@ FvbProtocolEraseBlocks (
|
||||||
returns.
|
returns.
|
||||||
|
|
||||||
@param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
|
@param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
|
||||||
|
|
||||||
@param Lba The starting logical block index to write to.
|
@param Lba The starting logical block index to write to.
|
||||||
|
|
||||||
@param Offset Offset into the block at which to begin writing.
|
@param Offset Offset into the block at which to begin writing.
|
||||||
|
|
||||||
@param NumBytes Pointer to a UINTN. At entry, *NumBytes
|
@param NumBytes Pointer to a UINTN. At entry, *NumBytes
|
||||||
contains the total size of the buffer. At
|
contains the total size of the buffer. At
|
||||||
exit, *NumBytes contains the total number of
|
exit, *NumBytes contains the total number of
|
||||||
bytes actually written.
|
bytes actually written.
|
||||||
|
|
||||||
@param Buffer Pointer to a caller-allocated buffer that
|
@param Buffer Pointer to a caller-allocated buffer that
|
||||||
contains the source for the write.
|
contains the source for the write.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The firmware volume was written successfully.
|
@retval EFI_SUCCESS The firmware volume was written successfully.
|
||||||
|
|
||||||
@retval EFI_BAD_BUFFER_SIZE The write was attempted across an
|
@retval EFI_BAD_BUFFER_SIZE The write was attempted across an
|
||||||
LBA boundary. On output, NumBytes
|
LBA boundary. On output, NumBytes
|
||||||
contains the total number of bytes
|
contains the total number of bytes
|
||||||
actually written.
|
actually written.
|
||||||
|
|
||||||
@retval EFI_ACCESS_DENIED The firmware volume is in the
|
@retval EFI_ACCESS_DENIED The firmware volume is in the
|
||||||
WriteDisabled state.
|
WriteDisabled state.
|
||||||
|
|
||||||
@retval EFI_DEVICE_ERROR The block device is malfunctioning
|
@retval EFI_DEVICE_ERROR The block device is malfunctioning
|
||||||
and could not be written.
|
and could not be written.
|
||||||
|
|
||||||
|
@ -503,7 +503,7 @@ FvbProtocolWrite (
|
||||||
aware that a read may be partially completed.
|
aware that a read may be partially completed.
|
||||||
|
|
||||||
@param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
|
@param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
|
||||||
|
|
||||||
@param Lba The starting logical block index
|
@param Lba The starting logical block index
|
||||||
from which to read.
|
from which to read.
|
||||||
|
|
||||||
|
@ -519,15 +519,15 @@ FvbProtocolWrite (
|
||||||
|
|
||||||
@retval EFI_SUCCESS The firmware volume was read successfully
|
@retval EFI_SUCCESS The firmware volume was read successfully
|
||||||
and contents are in Buffer.
|
and contents are in Buffer.
|
||||||
|
|
||||||
@retval EFI_BAD_BUFFER_SIZE Read attempted across an LBA
|
@retval EFI_BAD_BUFFER_SIZE Read attempted across an LBA
|
||||||
boundary. On output, NumBytes
|
boundary. On output, NumBytes
|
||||||
contains the total number of bytes
|
contains the total number of bytes
|
||||||
returned in Buffer.
|
returned in Buffer.
|
||||||
|
|
||||||
@retval EFI_ACCESS_DENIED The firmware volume is in the
|
@retval EFI_ACCESS_DENIED The firmware volume is in the
|
||||||
ReadDisabled state.
|
ReadDisabled state.
|
||||||
|
|
||||||
@retval EFI_DEVICE_ERROR The block device is not
|
@retval EFI_DEVICE_ERROR The block device is not
|
||||||
functioning correctly and could
|
functioning correctly and could
|
||||||
not be read.
|
not be read.
|
||||||
|
@ -715,9 +715,9 @@ InitializeFvAndVariableStoreHeaders (
|
||||||
/**
|
/**
|
||||||
Main entry point.
|
Main entry point.
|
||||||
|
|
||||||
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
||||||
@param[in] SystemTable A pointer to the EFI System Table.
|
@param[in] SystemTable A pointer to the EFI System Table.
|
||||||
|
|
||||||
@retval EFI_SUCCESS Successfully initialized.
|
@retval EFI_SUCCESS Successfully initialized.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
/*++
|
/*++
|
||||||
|
|
||||||
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
http://opensource.org/licenses/bsd-license.php
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
FwBlockService.h
|
FwBlockService.h
|
||||||
|
|
||||||
Abstract:
|
Abstract:
|
||||||
|
|
||||||
Firmware volume block driver for Intel Firmware Hub (FWH) device
|
Firmware volume block driver for Intel Firmware Hub (FWH) device
|
||||||
|
|
Loading…
Reference in New Issue