]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/Library/PlatformFvbLibNull/PlatformFvbLibNull.c
OvmfPkg EMU FVB: Convert to FVB2 protocol
[mirror_edk2.git] / OvmfPkg / Library / PlatformFvbLibNull / PlatformFvbLibNull.c
CommitLineData
a876ae6f 1/** @file\r
2 NULL PlatformFvbLib library instance\r
3\r
9529d0ff 4 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>\r
56d7640a 5 This program and the accompanying materials\r
a876ae6f 6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "PiDxe.h"\r
16#include <Library/PlatformFvbLib.h>\r
17\r
18\r
19/**\r
20 This function will be called following a call to the\r
21 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL Write function.\r
22\r
23 @param[in] This EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL instance.\r
24 @param[in] Lba The starting logical block index to written to.\r
9529d0ff 25 @param[in] Offset Offset into the block at which to begin writing.\r
26 @param[in] NumBytes The number of bytes written.\r
27 @param[in] Buffer Pointer to the buffer that was written.\r
a876ae6f 28\r
29**/\r
30VOID\r
31EFIAPI\r
32PlatformFvbDataWritten (\r
949b0f3b 33 IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This,\r
9529d0ff 34 IN EFI_LBA Lba,\r
35 IN UINTN Offset,\r
36 IN UINTN NumBytes,\r
37 IN UINT8 *Buffer\r
a876ae6f 38 )\r
39{\r
40}\r
41\r
42\r