mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
This patch fixes the following Ecc reported error: File header doesn't exist File header comment missing the ""Copyright"" Even though a copyright is present in the header file, the leading '*' char prevents the Ecc tool from detecting it. According to the edk2 coding specifcation, section 5.2.3 "File Heading", there should not be leading '*' char. Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
33 lines
586 B
C
33 lines
586 B
C
/** @file
|
|
|
|
Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#include "PrePi.h"
|
|
|
|
VOID
|
|
PrimaryMain (
|
|
IN UINTN UefiMemoryBase,
|
|
IN UINTN StacksBase,
|
|
IN UINT64 StartTimeStamp
|
|
)
|
|
{
|
|
PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);
|
|
|
|
// We must never return
|
|
ASSERT(FALSE);
|
|
}
|
|
|
|
VOID
|
|
SecondaryMain (
|
|
IN UINTN MpId
|
|
)
|
|
{
|
|
// We must never get into this function on UniCore system
|
|
ASSERT(FALSE);
|
|
}
|
|
|