arm64: sysreg: fix incorrect definition of SYS_PAR_EL1_F
The 'F' field of the PAR_EL1 register lives in bit 0, not bit 1.
Fix the broken definition in 'sysreg.h'.
Fixes: e8620cff99
("arm64: sysreg: Add some field definitions for PAR_EL1")
Reviewed-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
parent
19c95f261c
commit
29a0f5ad87
|
@ -212,7 +212,7 @@
|
||||||
#define SYS_FAR_EL1 sys_reg(3, 0, 6, 0, 0)
|
#define SYS_FAR_EL1 sys_reg(3, 0, 6, 0, 0)
|
||||||
#define SYS_PAR_EL1 sys_reg(3, 0, 7, 4, 0)
|
#define SYS_PAR_EL1 sys_reg(3, 0, 7, 4, 0)
|
||||||
|
|
||||||
#define SYS_PAR_EL1_F BIT(1)
|
#define SYS_PAR_EL1_F BIT(0)
|
||||||
#define SYS_PAR_EL1_FST GENMASK(6, 1)
|
#define SYS_PAR_EL1_FST GENMASK(6, 1)
|
||||||
|
|
||||||
/*** Statistical Profiling Extension ***/
|
/*** Statistical Profiling Extension ***/
|
||||||
|
|
Loading…
Reference in New Issue