blob: 358a02d5efdc023f2a8d5e8829ae62ee54f92c99 [file] [log] [blame]
Roberto Vargase0e99462017-10-30 14:43:43 +00001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch_helpers.h>
8#include <assert.h>
9#include <bl_common.h>
10#include <debug.h>
11#include <errno.h>
12#include <platform_def.h>
13
14/*
15 * The following platform functions are weakly defined. They
16 * are default implementations that allow BL2 to compile in
17 * absence of real definitions. The Platforms may override
18 * with more complex definitions.
19 */
20#pragma weak bl2_el3_plat_prepare_exit
21
22void bl2_el3_plat_prepare_exit(void)
23{
24}