aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2012-04-13 12:40:33 +0000
committerPeter Maydell <peter.maydell@linaro.org>2012-04-13 12:40:33 +0000
commit30bab23beaa03ed0b3ad21ff58c497fd1e971b75 (patch)
tree946e9ebfc47f44a66ea57fb43cf951cfc632846b
parentbb98fa166117d469ad9a48c02c5bb378492a0014 (diff)
hw/arm_gic: Remove stray hardcoded tabgic-as-device
Remove the single instance of a hardcoded tab from hw/arm_gic.c. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/arm_gic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm_gic.c b/hw/arm_gic.c
index ba6117adbd..72298b4b41 100644
--- a/hw/arm_gic.c
+++ b/hw/arm_gic.c
@@ -160,7 +160,7 @@ static void gic_update(gic_state *s)
cm = 1 << cpu;
s->current_pending[cpu] = 1023;
if (!s->enabled || !s->cpu_enabled[cpu]) {
- qemu_irq_lower(s->parent_irq[cpu]);
+ qemu_irq_lower(s->parent_irq[cpu]);
return;
}
best_prio = 0x100;