From fb722e1dc2d84529ab9aa597315b7d5ca6e2a23e Mon Sep 17 00:00:00 2001 From: Helge Deller Date: Tue, 14 Oct 2025 22:59:05 +0200 Subject: [PATCH] hw/hppa: Fix interrupt of LASI parallel port MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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é --- hw/hppa/machine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */