mirror of
https://github.com/rust-osdev/uefi-rs
synced 2026-08-26 18:26:05 -04:00
uefi: add missing IFAR field to SystemContextARM
EDK2: 7735ed4f8e/MdePkg/Include/Protocol/DebugSupport.h (L510)
This commit is contained in:
parent
d6c6441e8d
commit
886e0d5013
2 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -567,6 +567,7 @@ pub struct SystemContextARM {
|
|||
dfsr: u32,
|
||||
dfar: u32,
|
||||
ifsr: u32,
|
||||
ifar: u32,
|
||||
}
|
||||
|
||||
/// System context for AARCH64 processors
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue