diff options
Diffstat (limited to 'hw/lsi53c895a.c')
-rw-r--r-- | hw/lsi53c895a.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c index c15f167c84..d26e442c9d 100644 --- a/hw/lsi53c895a.c +++ b/hw/lsi53c895a.c @@ -2085,7 +2085,8 @@ static int lsi_scsi_uninit(PCIDevice *d) static const struct SCSIBusInfo lsi_scsi_info = { .tcq = true, - .ndev = LSI_MAX_DEVS, + .max_target = LSI_MAX_DEVS, + .max_lun = 0, /* LUN support is buggy */ .transfer_data = lsi_transfer_data, .complete = lsi_command_complete, |