| Submitter | Peter Maydell |
|---|---|
| Date | Dec. 11, 2012, 3:22 p.m. |
| Message ID | <1355239360-29249-3-git-send-email-peter.maydell@linaro.org> |
| Download | mbox | patch |
| Permalink | /patch/205262/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/arm_gic.c b/hw/arm_gic.c index f9e423f..672d539 100644 --- a/hw/arm_gic.c +++ b/hw/arm_gic.c @@ -73,7 +73,7 @@ void gic_update(GICState *s) } } level = 0; - if (best_prio <= s->priority_mask[cpu]) { + if (best_prio < s->priority_mask[cpu]) { s->current_pending[cpu] = best_irq; if (best_prio < s->running_priority[cpu]) { DPRINTF("Raised pending IRQ %d\n", best_irq);