]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/PrePi/MainUniCore.c
ArmPlatformPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / ArmPlatformPkg / PrePi / MainUniCore.c
CommitLineData
cd872e40 1/** @file\r
2*\r
3* Copyright (c) 2011, ARM Limited. All rights reserved.\r
4*\r
f4dfad05 5* SPDX-License-Identifier: BSD-2-Clause-Patent\r
cd872e40 6*\r
7**/\r
8\r
9#include "PrePi.h"\r
10\r
11VOID\r
12PrimaryMain (\r
13 IN UINTN UefiMemoryBase,\r
c524ffbb 14 IN UINTN StacksBase,\r
cd872e40 15 IN UINT64 StartTimeStamp\r
16 )\r
17{\r
f2e17a07 18 PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);\r
cd872e40 19\r
20 // We must never return\r
21 ASSERT(FALSE);\r
22}\r
23\r
24VOID\r
25SecondaryMain (\r
0787bc61 26 IN UINTN MpId\r
cd872e40 27 )\r
28{\r
29 // We must never get into this function on UniCore system\r
30 ASSERT(FALSE);\r
31}\r
32\r