]> Git Repo - qemu.git/commitdiff
hw/isa/isa-bus: Replace hw_error() by assert()
authorPhilippe Mathieu-Daudé <[email protected]>
Tue, 1 Sep 2020 10:40:43 +0000 (12:40 +0200)
committerLaurent Vivier <[email protected]>
Wed, 9 Sep 2020 13:25:28 +0000 (15:25 +0200)
As we can never have more than ISA_NUM_IRQS (16) ISA IRQs,
replace the not very interesting hw_error() call by an
assert() which is more useful to debug condition that can
not happen.

Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Message-Id: <20200901104043[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
hw/isa/isa-bus.c

index 58fde178f92ae23d6bffafa59e2dced66f555323..10bb7ffa43aeb89e46c164f70dfc3adb30182e2e 100644 (file)
@@ -21,7 +21,6 @@
 #include "qemu/error-report.h"
 #include "qemu/module.h"
 #include "qapi/error.h"
-#include "hw/hw.h"
 #include "monitor/monitor.h"
 #include "hw/sysbus.h"
 #include "sysemu/sysemu.h"
@@ -85,18 +84,14 @@ void isa_bus_irqs(ISABus *bus, qemu_irq *irqs)
 qemu_irq isa_get_irq(ISADevice *dev, unsigned isairq)
 {
     assert(!dev || ISA_BUS(qdev_get_parent_bus(DEVICE(dev))) == isabus);
-    if (isairq >= ISA_NUM_IRQS) {
-        hw_error("isa irq %d invalid", isairq);
-    }
+    assert(isairq < ISA_NUM_IRQS);
     return isabus->irqs[isairq];
 }
 
 void isa_init_irq(ISADevice *dev, qemu_irq *p, unsigned isairq)
 {
     assert(dev->nirqs < ARRAY_SIZE(dev->isairq));
-    if (isairq >= ISA_NUM_IRQS) {
-        hw_error("isa irq %d invalid", isairq);
-    }
+    assert(isairq < ISA_NUM_IRQS);
     dev->isairq[dev->nirqs] = isairq;
     *p = isa_get_irq(dev, isairq);
     dev->nirqs++;
This page took 0.028526 seconds and 4 git commands to generate.