Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 22 | void bl2_el3_plat_prepare_exit(void) |
| 23 | { |
| 24 | } |