diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2010-01-29 05:25:19 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-02-17 14:15:39 -0500 |
commit | 08002af25a7a379780244b94c5d5eedb7c098629 (patch) | |
tree | 77554e6381ab6cbae3092bb55358ed0ada610e03 /drivers/scsi/qla2xxx | |
parent | 63bad45db1d4e8aafe0633c5741c9720641f336a (diff) |
[SCSI] qla2xxx: negative error return in qla2x00_change_queue_depth()
The *change_queue_depth functions usually return a negative error return.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index ddc1d3def36c..82e57d778428 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -1258,7 +1258,7 @@ qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason) | |||
1258 | qla2x00_adjust_sdev_qdepth_up(sdev, qdepth); | 1258 | qla2x00_adjust_sdev_qdepth_up(sdev, qdepth); |
1259 | break; | 1259 | break; |
1260 | default: | 1260 | default: |
1261 | return EOPNOTSUPP; | 1261 | return -EOPNOTSUPP; |
1262 | } | 1262 | } |
1263 | 1263 | ||
1264 | return sdev->queue_depth; | 1264 | return sdev->queue_depth; |