scsi: drop reason argument from ->change_queue_depth
[firefly-linux-kernel-4.4.55.git] / drivers / scsi / fnic / fnic_main.c
index 86b496c8633dbabc095cb667dc1542cd104bfa2a..0c1f8177b5b72abf8f0c4d3d0b587dbb85a85226 100644 (file)
@@ -98,7 +98,7 @@ static int fnic_slave_alloc(struct scsi_device *sdev)
        if (!rport || fc_remote_port_chkready(rport))
                return -ENXIO;
 
-       scsi_adjust_queue_depth(sdev, fnic_max_qdepth);
+       scsi_change_queue_depth(sdev, fnic_max_qdepth);
        return 0;
 }
 
@@ -110,7 +110,7 @@ static struct scsi_host_template fnic_host_template = {
        .eh_device_reset_handler = fnic_device_reset,
        .eh_host_reset_handler = fnic_host_reset,
        .slave_alloc = fnic_slave_alloc,
-       .change_queue_depth = fc_change_queue_depth,
+       .change_queue_depth = scsi_change_queue_depth,
        .change_queue_type = scsi_change_queue_type,
        .this_id = -1,
        .cmd_per_lun = 3,