blob: 376799f9673eee9c66d9b031f5bd360e2fffb46e [file] [log] [blame]
Abdellatif El Khlifiad9b8e52021-04-21 17:20:43 +01001/*
Vishnu Banavath2b651ea2022-01-19 18:43:12 +00002 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
Abdellatif El Khlifiad9b8e52021-04-21 17:20:43 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <plat/arm/common/plat_arm.h>
8
9/*
Vishnu Banavath2b651ea2022-01-19 18:43:12 +000010 * corstone1000 error handler
Abdellatif El Khlifiad9b8e52021-04-21 17:20:43 +010011 */
12void __dead2 plat_arm_error_handler(int err)
13{
14 while (1) {
15 wfi();
16 }
17}