mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-03 01:06:13 +00:00

There is missing comma in copyright line. It is better to have all Copyrights align to the same style that's why fix it. Change-Id: Ifc04b474e1a172a7243b073d944007cf17d76e87 Signed-off-by: Michal Simek <michal.simek@amd.com>
29 lines
564 B
C
29 lines
564 B
C
/*
|
|
* Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <common/bl_common.h>
|
|
#include <common/debug.h>
|
|
#include <smccc_helpers.h>
|
|
|
|
uint64_t custom_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2,
|
|
uint64_t x3, uint64_t x4, void *cookie,
|
|
void *handle, uint64_t flags)
|
|
{
|
|
WARN("Unimplemented SiP Service Call: 0x%x\n", smc_fid);
|
|
SMC_RET1(handle, SMC_UNK);
|
|
}
|
|
|
|
void custom_early_setup(void)
|
|
{
|
|
}
|
|
|
|
void custom_mmap_add(void)
|
|
{
|
|
}
|
|
|
|
void custom_runtime_setup(void)
|
|
{
|
|
}
|