aboutsummaryrefslogtreecommitdiff
path: root/plat/common/plat_bl2_el3_common.c
blob: 358a02d5efdc023f2a8d5e8829ae62ee54f92c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <arch_helpers.h>
#include <assert.h>
#include <bl_common.h>
#include <debug.h>
#include <errno.h>
#include <platform_def.h>

/*
 * The following platform functions are weakly defined. They
 * are default implementations that allow BL2 to compile in
 * absence of real definitions. The Platforms may override
 * with more complex definitions.
 */
#pragma weak bl2_el3_plat_prepare_exit

void bl2_el3_plat_prepare_exit(void)
{
}