aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/include
diff options
context:
space:
mode:
authorStefan Traby <stefan@hello-penguin.com>2017-06-20 15:30:42 +0200
committerMarc Zyngier <marc.zyngier@arm.com>2017-06-22 17:38:42 +0100
commitd38338e396ee0571b3502962fd2fbaec4d2d9a8f (patch)
tree37d16bf28d4db54500295dad1830e0b87f1447ea /arch/arm64/include
parentKVM: arm/arm64: Signal SIGBUS when stage2 discovers hwpoison memory (diff)
downloadlinux-dev-d38338e396ee0571b3502962fd2fbaec4d2d9a8f.tar.xz
linux-dev-d38338e396ee0571b3502962fd2fbaec4d2d9a8f.zip
arm64: Remove a redundancy in sysreg.h
This is really trivial; there is a dup (1 << 16) in the code Acked-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Stefan Traby <stefan@hello-penguin.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm64/include')
-rw-r--r--arch/arm64/include/asm/sysreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h
index 040b607cb682..16e44fa9b3b6 100644
--- a/arch/arm64/include/asm/sysreg.h
+++ b/arch/arm64/include/asm/sysreg.h
@@ -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)