aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-11-13 10:47:59 +0000
committerPeter Maydell <peter.maydell@linaro.org>2018-11-13 10:47:59 +0000
commitb281ba4223c302c41ff8104152bfdd44de4fe798 (patch)
tree1e8bed0916575425c2df7ee99e3c914d44c3f9b0 /target
parentf251cb237188d4398edeb47234d9d32fb701516a (diff)
downloadqemu-b281ba4223c302c41ff8104152bfdd44de4fe798.zip
qemu-b281ba4223c302c41ff8104152bfdd44de4fe798.tar.gz
qemu-b281ba4223c302c41ff8104152bfdd44de4fe798.tar.bz2
arm: use symbolic MDCR_TDE in arm_debug_target_el
We already have this symbol defined so lets use it. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20181109152119.9242-7-alex.bennee@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target')
-rw-r--r--target/arm/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h
index b5eff79..1efff21 100644
--- a/target/arm/cpu.h
+++ b/target/arm/cpu.h
@@ -2743,7 +2743,7 @@ static inline int arm_debug_target_el(CPUARMState *env)
if (arm_feature(env, ARM_FEATURE_EL2) && !secure) {
route_to_el2 = env->cp15.hcr_el2 & HCR_TGE ||
- env->cp15.mdcr_el2 & (1 << 8);
+ env->cp15.mdcr_el2 & MDCR_TDE;
}
if (route_to_el2) {