From: Helge Deller <[email protected]> Fix wrong assignment where the LASI parallel port was using the IRQ line of the LASI LAN card.
Signed-off-by: Helge Deller <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> --- 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 */ -- 2.51.0
