From 0347b6d46b7c7f904847d618cb0f1c42b6177cbe Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 5 Jun 2017 01:36:39 +0200 Subject: [PATCH] BusLogic base address is now read from the correct configuration variable. --- src/scsi_buslogic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scsi_buslogic.c b/src/scsi_buslogic.c index b88e7de99..d5113e000 100644 --- a/src/scsi_buslogic.c +++ b/src/scsi_buslogic.c @@ -2243,7 +2243,7 @@ BuslogicInit(int chip) chip = CHIP_BUSLOGIC_ISA; } bl->chip = chip; - bl->Base = device_get_config_hex16("addr"); + bl->Base = device_get_config_hex16("base"); bl->PCIBase = 0; bl->MMIOBase = 0; bl->Irq = device_get_config_int("irq");