Merge "fix(gicv2): fix SGIR_NSATT bitshift" into integration

This commit is contained in:
Manish Pandey 2024-04-16 15:57:03 +02:00 committed by TrustedFirmware Code Review
commit e9398e46bc
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@
#define SGIR_TGTLSTFLT_MASK U(0x3)
#define SGIR_TGTLST_SHIFT 16
#define SGIR_TGTLST_MASK U(0xff)
#define SGIR_NSATT (U(0x1) << 16)
#define SGIR_NSATT (U(0x1) << 15)
#define SGIR_INTID_MASK ULL(0xf)
#define SGIR_TGT_SPECIFIC U(0)