Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame] | 1 | /* |
Jimmy Brisson | 471550a | 2020-08-06 10:50:15 -0500 | [diff] [blame] | 2 | * Copyright (c) 2019-2020, Arm Limited. All rights reserved. |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <plat/arm/common/plat_arm.h> |
| 8 | |
| 9 | /* |
| 10 | * rde1edge error handler |
| 11 | */ |
| 12 | void __dead2 plat_arm_error_handler(int err) |
| 13 | { |
Jimmy Brisson | 471550a | 2020-08-06 10:50:15 -0500 | [diff] [blame] | 14 | while (true) { |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame] | 15 | wfi(); |
| 16 | } |
| 17 | } |