summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Maydell2022-08-19 13:00:52 +0200
committerRichard Henderson2022-09-14 12:19:40 +0200
commitbb7d902154f7f17c9127631c42a21fbbc805cb40 (patch)
treea4afc7e21256329f21b62939c29c154b07629108
parenttarget/arm: Advertise FEAT_ETS for '-cpu max' (diff)
downloadqemu-bb7d902154f7f17c9127631c42a21fbbc805cb40.tar.gz
qemu-bb7d902154f7f17c9127631c42a21fbbc805cb40.tar.xz
qemu-bb7d902154f7f17c9127631c42a21fbbc805cb40.zip
target/arm: Add missing space in comment
Fix a missing space before a comment terminator. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220819110052.2942289-7-peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--target/arm/cpu_tcg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/cpu_tcg.c b/target/arm/cpu_tcg.c
index f63f8cdd95..b714c61d94 100644
--- a/target/arm/cpu_tcg.c
+++ b/target/arm/cpu_tcg.c
@@ -64,7 +64,7 @@ void aa32_max_features(ARMCPU *cpu)
t = FIELD_DP32(t, ID_MMFR4, HPDS, 1); /* FEAT_AA32HPD */
t = FIELD_DP32(t, ID_MMFR4, AC2, 1); /* ACTLR2, HACTLR2 */
t = FIELD_DP32(t, ID_MMFR4, CNP, 1); /* FEAT_TTCNP */
- t = FIELD_DP32(t, ID_MMFR4, XNX, 1); /* FEAT_XNX*/
+ t = FIELD_DP32(t, ID_MMFR4, XNX, 1); /* FEAT_XNX */
cpu->isar.id_mmfr4 = t;
t = cpu->isar.id_mmfr5;