summaryrefslogtreecommitdiff
path: root/plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c
blob: b6765a60e0b167e4ec7e934f631eeeb6d9166433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <stdint.h>

#if defined(SPD_spmd)
/*
 * A dummy implementation of the platform handler for Group0 secure interrupt.
 */
int plat_spmd_handle_group0_interrupt(uint32_t intid)
{
	(void)intid;
	return -1;
}
#endif /*defined(SPD_spmd)*/