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