mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 09:29:11 +00:00
apic_internal.h: rename ESR_ILLEGAL_ADDRESS to APIC_ESR_ILLEGAL_ADDRESS
Added prefix APIC_ for determining the constant of a particular subsystem, improve the overall readability and match other constant names. Backports commit a22bf99c5852f369dc620be2c3c93535a5b69a58 from qemu
This commit is contained in:
parent
fcd3e3e449
commit
79559c82aa
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@
|
|||
#define APIC_ESR_SEND_ACCEPT_SHIFT 2
|
||||
#define APIC_ESR_RECV_CHECK_SUM_SHIFT 1
|
||||
|
||||
#define ESR_ILLEGAL_ADDRESS (1 << 7)
|
||||
#define APIC_ESR_ILLEGAL_ADDRESS (1 << 7)
|
||||
#define APIC_ESR_RECV_ILLEGAL_VECT (1 << APIC_ESR_RECV_ILL_VECT_SHIFT)
|
||||
#define APIC_ESR_SEND_ILLEGAL_VECT (1 << APIC_ESR_SEND_ILL_VECT_SHIFT)
|
||||
#define APIC_ESR_RECV_ACCEPT (1 << APIC_ESR_RECV_ACCEPT_SHIFT)
|
||||
|
|
Loading…
Reference in a new issue