diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-02-09 13:32:18 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-02-27 22:29:02 +0100 |
| commit | 7067887ea18622e381f09b998b67095f51e4aa49 (patch) | |
| tree | eeee2d9c79efbd7e8f4c21a868629911e61ef412 /hw/isa/i82378.c | |
| parent | 23c69bb822910ccb5c78fa3bf2b6bb96a47188d1 (diff) | |
| download | focaccia-qemu-7067887ea18622e381f09b998b67095f51e4aa49.tar.gz focaccia-qemu-7067887ea18622e381f09b998b67095f51e4aa49.zip | |
hw/isa: Rename isa_bus_irqs() -> isa_bus_register_input_irqs()
isa_bus_irqs() register an array of input IRQs on the ISA bus. Rename it as isa_bus_register_input_irqs(). Mechanical change using: $ sed -i -e 's/isa_bus_irqs/isa_bus_register_input_irqs/g' \ $(git grep -wl isa_bus_irqs) Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230210163744.32182-10-philmd@linaro.org>
Diffstat (limited to 'hw/isa/i82378.c')
| -rw-r--r-- | hw/isa/i82378.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/i82378.c b/hw/isa/i82378.c index d32653369d..233059c6dc 100644 --- a/hw/isa/i82378.c +++ b/hw/isa/i82378.c @@ -89,7 +89,7 @@ static void i82378_realize(PCIDevice *pci, Error **errp) /* 2 82C59 (irq) */ s->isa_irqs_in = i8259_init(isabus, s->cpu_intr); - isa_bus_irqs(isabus, s->isa_irqs_in); + isa_bus_register_input_irqs(isabus, s->isa_irqs_in); /* 1 82C54 (pit) */ pit = i8254_pit_init(isabus, 0x40, 0, NULL); |