mirror of https://gitee.com/openkylin/qemu.git
arm_gic: Use GIC_NR_SGIS constant
Use constant rather than a plain number. Acked-by: Christoffer Dall <christoffer.dall@linaro.org> Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de> Message-id: 1408372255-12358-5-git-send-email-adam@os.inf.tu-dresden.de Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
de7a900f0c
commit
93b5f6f1a6
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue