Commit d38338e3 authored by Stefan Traby's avatar Stefan Traby Committed by Marc Zyngier

arm64: Remove a redundancy in sysreg.h

This is really trivial; there is a dup (1 << 16) in the code
Acked-by: default avatarWill Deacon <will.deacon@arm.com>
Signed-off-by: default avatarStefan Traby <stefan@hello-penguin.com>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent 196f878a
......@@ -304,8 +304,8 @@
#define SCTLR_ELx_M 1
#define SCTLR_EL2_RES1 ((1 << 4) | (1 << 5) | (1 << 11) | (1 << 16) | \
(1 << 16) | (1 << 18) | (1 << 22) | (1 << 23) | \
(1 << 28) | (1 << 29))
(1 << 18) | (1 << 22) | (1 << 23) | (1 << 28) | \
(1 << 29))
#define SCTLR_ELx_FLAGS (SCTLR_ELx_M | SCTLR_ELx_A | SCTLR_ELx_C | \
SCTLR_ELx_SA | SCTLR_ELx_I)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment