mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-25 16:10:16 +00:00
fix ESR_EC macro
This commit is contained in:
parent
6d0979e71e
commit
e08e8e0e96
2 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ class ESR_EC(IntEnum):
|
||||||
UNKNOWN = 0b000000
|
UNKNOWN = 0b000000
|
||||||
WFI = 0b000001
|
WFI = 0b000001
|
||||||
FP_TRAP = 0b000111
|
FP_TRAP = 0b000111
|
||||||
PAUTH_TRAP = 0b001000
|
PAUTH_TRAP = 0b001001
|
||||||
LS64 = 0b001010
|
LS64 = 0b001010
|
||||||
BTI = 0b001101
|
BTI = 0b001101
|
||||||
ILLEGAL = 0b001110
|
ILLEGAL = 0b001110
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
#define ESR_EC_UNKNOWN 0b000000
|
#define ESR_EC_UNKNOWN 0b000000
|
||||||
#define ESR_EC_WFI 0b000001
|
#define ESR_EC_WFI 0b000001
|
||||||
#define ESR_EC_FP_TRAP 0b000111
|
#define ESR_EC_FP_TRAP 0b000111
|
||||||
#define ESR_EC_PAUTH_TRAP 0b001000
|
#define ESR_EC_PAUTH_TRAP 0b001001
|
||||||
#define ESR_EC_LS64 0b001010
|
#define ESR_EC_LS64 0b001010
|
||||||
#define ESR_EC_BTI 0b001101
|
#define ESR_EC_BTI 0b001101
|
||||||
#define ESR_EC_ILLEGAL 0b001110
|
#define ESR_EC_ILLEGAL 0b001110
|
||||||
|
|
Loading…
Reference in a new issue