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