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