mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-08 13:53:54 +00:00
fix(ras): fix typo in uncorrectable error type UEO
Fix spelling for UEO from restable to restartable based on PE error state recording in the exception syndrome Refer to https://developer.arm.com/documentation/ddi0487/latest/ RAS PE architecture. Change-Id: I4da419f2120a7385853d4da78b409c675cdfe1c8 Signed-off-by: Vinoj Soundararajan <vinojs@google.com>
This commit is contained in:
parent
9c17687aab
commit
e5cd3e81d1
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@
|
||||||
/* Uncorrected error types for Asynchronous exceptions */
|
/* Uncorrected error types for Asynchronous exceptions */
|
||||||
#define ERROR_STATUS_UET_UC 0x0 /* Uncontainable */
|
#define ERROR_STATUS_UET_UC 0x0 /* Uncontainable */
|
||||||
#define ERROR_STATUS_UET_UEU 0x1 /* Unrecoverable */
|
#define ERROR_STATUS_UET_UEU 0x1 /* Unrecoverable */
|
||||||
#define ERROR_STATUS_UET_UEO 0x2 /* Restable */
|
#define ERROR_STATUS_UET_UEO 0x2 /* Restartable */
|
||||||
#define ERROR_STATUS_UET_UER 0x3 /* Recoverable */
|
#define ERROR_STATUS_UET_UER 0x3 /* Recoverable */
|
||||||
|
|
||||||
/* Error types for Synchronous exceptions */
|
/* Error types for Synchronous exceptions */
|
||||||
|
|
Loading…
Add table
Reference in a new issue