summaryrefslogtreecommitdiff
path: root/src/megasas.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/megasas.c')
-rw-r--r--src/megasas.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/megasas.c b/src/megasas.c
index 3ccdd0a..170700f 100644
--- a/src/megasas.c
+++ b/src/megasas.c
@@ -17,7 +17,7 @@
#include "pci_ids.h" // PCI_DEVICE_ID_XXX
#include "pci_regs.h" // PCI_VENDOR_ID
#include "boot.h" // bootprio_find_scsi_device
-#include "blockcmd.h" // scsi_init_drive
+#include "blockcmd.h" // scsi_drive_setup
#include "disk.h"
#define MFI_DB 0x0 // Doorbell
@@ -223,7 +223,7 @@ megasas_add_lun(struct pci_device *pci, u32 iobase, u8 target, u8 lun)
pci_bdf_to_bus(pci->bdf), pci_bdf_to_dev(pci->bdf),
pci_bdf_to_fn(pci->bdf), target, lun);
prio = bootprio_find_scsi_device(pci, target, lun);
- ret = scsi_init_drive(&mlun->drive, name, prio);
+ ret = scsi_drive_setup(&mlun->drive, name, prio);
free(name);
if (ret) {
free(mlun->frame);