]> git.proxmox.com Git - mirror_edk2.git/blob - ArmVirtPkg/QemuFwCfgToPcdDxe/QemuFwCfgToPcd.c
ArmVirtPkg: set SMBIOS version in DetectSmbiosVersionLib instead of QemuFwCfgToPcdDxe
[mirror_edk2.git] / ArmVirtPkg / QemuFwCfgToPcdDxe / QemuFwCfgToPcd.c
1 /** @file
2 * An "early" DXE driver that parses well-known fw-cfg files into dynamic PCDs
3 * that control other (universal) DXE drivers.
4 *
5 * Copyright (C) 2015, Red Hat, Inc.
6 * Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR>
7 *
8 * This program and the accompanying materials are licensed and made available
9 * under the terms and conditions of the BSD License which accompanies this
10 * distribution. The full text of the license may be found at
11 * http://opensource.org/licenses/bsd-license.php
12 *
13 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR
15 * IMPLIED.
16 *
17 **/
18
19 #include <Uefi/UefiBaseType.h>
20 #include <Uefi/UefiSpec.h>
21
22 #include <Library/PcdLib.h>
23 #include <Library/QemuFwCfgLib.h>
24
25 EFI_STATUS
26 EFIAPI
27 ParseQemuFwCfgToPcd (
28 IN EFI_HANDLE ImageHandle,
29 IN EFI_SYSTEM_TABLE *SystemTable
30 )
31 {
32 return EFI_SUCCESS;
33 }