uefi: add missing IFAR field to SystemContextARM

EDK2: 7735ed4f8e/MdePkg/Include/Protocol/DebugSupport.h (L510)
This commit is contained in:
Philipp Schuster 2026-08-23 12:22:50 +02:00
parent d6c6441e8d
commit 886e0d5013
No known key found for this signature in database
2 changed files with 3 additions and 0 deletions

View file

@ -5,6 +5,8 @@
## Changed
- Made memory map types `#[repr(C)]`
- Added `char16!` const-compatible macro as convenient replacement for `Char16::try_from().unwrap()`
- `proto::debug::SystemContextARM` now contains the trailing `IFAR` field
mandated by the spec.
## Removed

View file

@ -567,6 +567,7 @@ pub struct SystemContextARM {
dfsr: u32,
dfar: u32,
ifsr: u32,
ifar: u32,
}
/// System context for AARCH64 processors