diff options
author | Evgeny Voevodin | 2012-10-12 12:54:37 +0200 |
---|---|---|
committer | Peter Maydell | 2012-10-12 12:54:37 +0200 |
commit | 9ab1b6053f03d58ba8e7accc8f19c882fbffb66f (patch) | |
tree | 5587b7961d20affbc078c7fd30182805098846fa /hw/arm_gic.c | |
parent | cadence_ttc: Fix 'clear on read' behavior (diff) | |
download | qemu-9ab1b6053f03d58ba8e7accc8f19c882fbffb66f.tar.gz qemu-9ab1b6053f03d58ba8e7accc8f19c882fbffb66f.tar.xz qemu-9ab1b6053f03d58ba8e7accc8f19c882fbffb66f.zip |
hw/arm_gic.c: Fix improper DPRINTF output.
s->cpu_enabled is an array, so s->cpu_enabled ? "En" : "Dis" returns
"En" always. We should use s->cpu_enabled[cpu] here.
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm_gic.c')
-rw-r--r-- | hw/arm_gic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm_gic.c b/hw/arm_gic.c index 55871fad19..4024daeea4 100644 --- a/hw/arm_gic.c +++ b/hw/arm_gic.c @@ -566,7 +566,7 @@ static void gic_cpu_write(gic_state *s, int cpu, int offset, uint32_t value) switch (offset) { case 0x00: /* Control */ s->cpu_enabled[cpu] = (value & 1); - DPRINTF("CPU %d %sabled\n", cpu, s->cpu_enabled ? "En" : "Dis"); + DPRINTF("CPU %d %sabled\n", cpu, s->cpu_enabled[cpu] ? "En" : "Dis"); break; case 0x04: /* Priority mask */ s->priority_mask[cpu] = (value & 0xff); |