RESERVED_INTERRUPTS to be INTERRUPT_TO_PRIORITY (#2676)

This commit is contained in:
Kirill Mikhailov 2024-12-04 17:43:41 +01:00 committed by GitHub
parent 50387290d9
commit 033c4b84c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -169,7 +169,7 @@ impl Priority {
/// The interrupts reserved by the HAL
#[cfg_attr(place_switch_tables_in_ram, link_section = ".rwtext")]
pub static RESERVED_INTERRUPTS: &[usize] = INTERRUPT_TO_PRIORITY;
pub static RESERVED_INTERRUPTS: &[usize] = PRIORITY_TO_INTERRUPT;
/// # Safety
///