Message ID | 1408367280-5093-5-git-send-email-adam@os.inf.tu-dresden.de |
---|---|
State | New |
Headers | show |
On Mon, Aug 18, 2014 at 03:08:00PM +0200, Adam Lackorzynski wrote: > Use constant rather than a plain number. > > Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de> > --- > hw/intc/arm_gic_common.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/intc/arm_gic_common.c b/hw/intc/arm_gic_common.c > index 6d884ec..18b01ba 100644 > --- a/hw/intc/arm_gic_common.c > +++ b/hw/intc/arm_gic_common.c > @@ -128,7 +128,7 @@ static void arm_gic_common_reset(DeviceState *dev) > s->running_priority[i] = 0x100; > s->cpu_enabled[i] = false; > } > - for (i = 0; i < 16; i++) { > + for (i = 0; i < GIC_NR_SGIS; i++) { > GIC_SET_ENABLED(i, ALL_CPU_MASK); > GIC_SET_EDGE_TRIGGER(i); > } > -- > 2.1.0.rc1 > Acked-by: Christoffer Dall <christoffer.dall@linaro.org>
diff --git a/hw/intc/arm_gic_common.c b/hw/intc/arm_gic_common.c index 6d884ec..18b01ba 100644 --- a/hw/intc/arm_gic_common.c +++ b/hw/intc/arm_gic_common.c @@ -128,7 +128,7 @@ static void arm_gic_common_reset(DeviceState *dev) s->running_priority[i] = 0x100; s->cpu_enabled[i] = false; } - for (i = 0; i < 16; i++) { + for (i = 0; i < GIC_NR_SGIS; i++) { GIC_SET_ENABLED(i, ALL_CPU_MASK); GIC_SET_EDGE_TRIGGER(i); }
Use constant rather than a plain number. Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de> --- hw/intc/arm_gic_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)