]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/PlatformPei/PlatformPeiLib.c
ArmPlatformPkg: Fix Ecc error 8001
[mirror_edk2.git] / ArmPlatformPkg / PlatformPei / PlatformPeiLib.c
1 /** @file
2
3 Copyright (c) 2011-2014, ARM Limited. All rights reserved.
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include <PiPei.h>
10
11 #include <Library/ArmPlatformLib.h>
12 #include <Library/HobLib.h>
13 #include <Library/PcdLib.h>
14
15 EFI_STATUS
16 EFIAPI
17 PlatformPeim (
18 VOID
19 )
20 {
21 BuildFvHob (PcdGet64 (PcdFvBaseAddress), PcdGet32 (PcdFvSize));
22
23 return EFI_SUCCESS;
24 }