From: Helge Deller Date: Tue, 14 Oct 2025 20:59:05 +0000 (+0200) Subject: hw/hppa: Fix interrupt of LASI parallel port X-Git-Tag: v10.2.0-rc1~42^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb722e1dc2d84529ab9aa597315b7d5ca6e2a23e;p=thirdparty%2Fqemu.git hw/hppa: Fix interrupt of LASI parallel port Fix wrong assignment where the LASI parallel port was using the IRQ line of the LASI LAN card. Signed-off-by: Helge Deller Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé --- diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c index cddca69b93..bec5a86f24 100644 --- a/hw/hppa/machine.c +++ b/hw/hppa/machine.c @@ -584,7 +584,7 @@ static void machine_HP_B160L_init(MachineState *machine) /* Parallel port */ parallel_mm_init(addr_space, translate(NULL, LASI_LPT_HPA + 0x800), 0, - qdev_get_gpio_in(lasi_dev, LASI_IRQ_LAN_HPA), + qdev_get_gpio_in(lasi_dev, LASI_IRQ_LPT_HPA), parallel_hds[0]); /* PS/2 Keyboard/Mouse */