mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 22:05:40 +00:00
fix(gicv3): fix GITS_CTLR.Quiescent bit definition
GITS_CTLR.Quiescent is bit31, not bit1. So fix GITS_CTLR_QUIESCENT_BIT to BIT32(31). Change-Id: Ic16a52e0c4e557d68a8128ccc7e7a0f1a316a23b Signed-off-by: Joe Yang <magicse7en@outlook.com>
This commit is contained in:
parent
eb366ee769
commit
2da29d2d07
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@
|
|||
|
||||
/* GITS_CTLR bit definitions */
|
||||
#define GITS_CTLR_ENABLED_BIT BIT_32(0)
|
||||
#define GITS_CTLR_QUIESCENT_BIT BIT_32(1)
|
||||
#define GITS_CTLR_QUIESCENT_BIT BIT_32(31)
|
||||
|
||||
#define GITS_TYPER_VSGI BIT_64(39)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue