]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/Library/PlatformFvbLibNull/PlatformFvbLibNull.c
OvmfPkg/build.sh: Add features and replace build32/64.sh
[mirror_edk2.git] / OvmfPkg / Library / PlatformFvbLibNull / PlatformFvbLibNull.c
CommitLineData
a876ae6f 1/** @file\r
2 NULL PlatformFvbLib library instance\r
3\r
56d7640a
HT
4 Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>\r
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
25\r
26**/\r
27VOID\r
28EFIAPI\r
29PlatformFvbDataWritten (\r
30 IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This,\r
31 IN EFI_LBA Lba\r
32 )\r
33{\r
34}\r
35\r
36\r