mirror of https://github.com/xemu-project/xemu.git
hw/sparc: use ARRAY_SIZE() macro
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
bb0b6f39c0
commit
1f6fb58d05
|
@ -214,7 +214,7 @@ static void isa_irq_handler(void *opaque, int n, int level)
|
|||
qemu_irq *irqs = opaque;
|
||||
int ivec;
|
||||
|
||||
assert(n < 16);
|
||||
assert(n < ARRAY_SIZE(isa_irq_to_ivec));
|
||||
ivec = isa_irq_to_ivec[n];
|
||||
EBUS_DPRINTF("Set ISA IRQ %d level %d -> ivec 0x%x\n", n, level, ivec);
|
||||
if (ivec) {
|
||||
|
|
Loading…
Reference in New Issue