Fix incorrect APIC delivery mode definitions

This commit is contained in:
Aiken Harris 2025-09-01 19:32:29 +02:00
parent 3c8b7cb1f2
commit d45cc5ffe5
Signed by: harraiken
GPG Key ID: C40F06CB7493C1F5
2 changed files with 16 additions and 16 deletions

View File

@ -43,14 +43,14 @@
#define APIC_DF_CLUSTER 0x0FFFFFFF
/* APIC delivery modes */
#define APIC_DM_FIXED 0x00000000
#define APIC_DM_LOWPRIO 0x00000100
#define APIC_DM_SMI 0x00000200
#define APIC_DM_REMOTE 0x00000300
#define APIC_DM_NMI 0x00000400
#define APIC_DM_INIT 0x00000500
#define APIC_DM_STARTUP 0x00000600
#define APIC_DM_EXTINT 0x00000700
#define APIC_DM_FIXED 0x0
#define APIC_DM_LOWPRIO 0x1
#define APIC_DM_SMI 0x2
#define APIC_DM_REMOTE 0x3
#define APIC_DM_NMI 0x4
#define APIC_DM_INIT 0x5
#define APIC_DM_STARTUP 0x6
#define APIC_DM_EXTINT 0x7
/* APIC trigger modes */
#define APIC_TGM_EDGE 0

View File

@ -48,14 +48,14 @@
#define APIC_DF_CLUSTER 0x0FFFFFFF
/* APIC delivery modes */
#define APIC_DM_FIXED 0x00000000
#define APIC_DM_LOWPRIO 0x00000100
#define APIC_DM_SMI 0x00000200
#define APIC_DM_REMOTE 0x00000300
#define APIC_DM_NMI 0x00000400
#define APIC_DM_INIT 0x00000500
#define APIC_DM_STARTUP 0x00000600
#define APIC_DM_EXTINT 0x00000700
#define APIC_DM_FIXED 0x0
#define APIC_DM_LOWPRIO 0x1
#define APIC_DM_SMI 0x2
#define APIC_DM_REMOTE 0x3
#define APIC_DM_NMI 0x4
#define APIC_DM_INIT 0x5
#define APIC_DM_STARTUP 0x6
#define APIC_DM_EXTINT 0x7
/* APIC trigger modes */
#define APIC_TGM_EDGE 0