Skip to content

Commit 07f028c

Browse files
committed
fix x86 ipi vector
1 parent baac36e commit 07f028c

File tree

1 file changed

+1
-1
lines changed
  • modules/axhal/src/platform/x86_pc

1 file changed

+1
-1
lines changed

modules/axhal/src/platform/x86_pc/apic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub(super) mod vectors {
1414
pub const APIC_TIMER_VECTOR: u8 = 0xf0;
1515
pub const APIC_SPURIOUS_VECTOR: u8 = 0xf1;
1616
pub const APIC_ERROR_VECTOR: u8 = 0xf2;
17-
pub const APIC_IPI_VECTOR: u8 = 0xf2;
17+
pub const APIC_IPI_VECTOR: u8 = 0xf3;
1818
}
1919

2020
/// The maximum number of IRQs.

0 commit comments

Comments
 (0)