diff options
Diffstat (limited to 'drivers/scsi/eata.c')
-rw-r--r-- | drivers/scsi/eata.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/eata.c b/drivers/scsi/eata.c index bc0f918f1729..227dd2c2ec2f 100644 --- a/drivers/scsi/eata.c +++ b/drivers/scsi/eata.c | |||
@@ -952,12 +952,12 @@ static int eata2x_slave_configure(struct scsi_device *dev) | |||
952 | } else { | 952 | } else { |
953 | tag_suffix = ", no tags"; | 953 | tag_suffix = ", no tags"; |
954 | } | 954 | } |
955 | scsi_adjust_queue_depth(dev, tqd); | 955 | scsi_change_queue_depth(dev, tqd); |
956 | } else if (TLDEV(dev->type) && linked_comm) { | 956 | } else if (TLDEV(dev->type) && linked_comm) { |
957 | scsi_adjust_queue_depth(dev, tqd); | 957 | scsi_change_queue_depth(dev, tqd); |
958 | tag_suffix = ", untagged"; | 958 | tag_suffix = ", untagged"; |
959 | } else { | 959 | } else { |
960 | scsi_adjust_queue_depth(dev, utqd); | 960 | scsi_change_queue_depth(dev, utqd); |
961 | tag_suffix = ""; | 961 | tag_suffix = ""; |
962 | } | 962 | } |
963 | 963 | ||