]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/QemuFlashFvbServicesRuntimeDxe/QemuFlashDxe.c
BaseTools/BinToPcd: Fix Python 2.7.x compatibility issue
[mirror_edk2.git] / OvmfPkg / QemuFlashFvbServicesRuntimeDxe / QemuFlashDxe.c
CommitLineData
1767877a
LE
1/** @file\r
2 OVMF support for QEMU system firmware flash device: functions specific to the\r
3 runtime DXE driver build.\r
4\r
5 Copyright (C) 2015, Red Hat, Inc.\r
6 Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.<BR>\r
7\r
8 This program and the accompanying materials are licensed and made available\r
9 under the terms and conditions of the BSD License which accompanies this\r
10 distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#include <Library/UefiRuntimeLib.h>\r
19\r
20#include "QemuFlash.h"\r
21\r
22VOID\r
23QemuFlashConvertPointers (\r
24 VOID\r
25 )\r
26{\r
27 EfiConvertPointer (0x0, (VOID **) &mFlashBase);\r
28}\r
e4a1d5a7
BS
29\r
30VOID\r
31QemuFlashBeforeProbe (\r
32 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
33 IN UINTN FdBlockSize,\r
34 IN UINTN FdBlockCount\r
35 )\r
36{\r
37 //\r
38 // Do nothing\r
39 //\r
40}\r