]> git.proxmox.com Git - mirror_edk2.git/blame - BeagleBoardPkg/PrePi/Arm/ArchPrePi.c
BeagleBoardPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BeagleBoardPkg / PrePi / Arm / ArchPrePi.c
CommitLineData
917c5627
AB
1/** @file\r
2*\r
3* Copyright (c) 2011 - 2013, ARM Limited. All rights reserved.\r
4*\r
a1594be9 5* SPDX-License-Identifier: BSD-2-Clause-Patent\r
917c5627
AB
6*\r
7**/\r
8\r
9#include "PrePi.h"\r
10\r
11VOID\r
12ArchInitialize (\r
13 VOID\r
14 )\r
15{\r
16 // Enable program flow prediction, if supported.\r
17 ArmEnableBranchPrediction ();\r
18\r
19 if (FixedPcdGet32 (PcdVFPEnabled)) {\r
20 ArmEnableVFP ();\r
21 }\r
22}\r
23\r