diff options
| -rw-r--r-- | drivers/ata/libata-scsi.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 22643c0d9a56..47ea111d5ace 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
| @@ -3347,20 +3347,23 @@ EXPORT_SYMBOL_GPL(ata_sas_slave_configure); | |||
| 3347 | * @ap: ATA port to which the command is being sent | 3347 | * @ap: ATA port to which the command is being sent |
| 3348 | * | 3348 | * |
| 3349 | * RETURNS: | 3349 | * RETURNS: |
| 3350 | * Zero. | 3350 | * Return value from __ata_scsi_queuecmd() if @cmd can be queued, |
| 3351 | * 0 otherwise. | ||
| 3351 | */ | 3352 | */ |
| 3352 | 3353 | ||
| 3353 | int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *), | 3354 | int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *), |
| 3354 | struct ata_port *ap) | 3355 | struct ata_port *ap) |
| 3355 | { | 3356 | { |
| 3357 | int rc = 0; | ||
| 3358 | |||
| 3356 | ata_scsi_dump_cdb(ap, cmd); | 3359 | ata_scsi_dump_cdb(ap, cmd); |
| 3357 | 3360 | ||
| 3358 | if (likely(ata_scsi_dev_enabled(ap->device))) | 3361 | if (likely(ata_scsi_dev_enabled(ap->device))) |
| 3359 | __ata_scsi_queuecmd(cmd, done, ap->device); | 3362 | rc = __ata_scsi_queuecmd(cmd, done, ap->device); |
| 3360 | else { | 3363 | else { |
| 3361 | cmd->result = (DID_BAD_TARGET << 16); | 3364 | cmd->result = (DID_BAD_TARGET << 16); |
| 3362 | done(cmd); | 3365 | done(cmd); |
| 3363 | } | 3366 | } |
| 3364 | return 0; | 3367 | return rc; |
| 3365 | } | 3368 | } |
| 3366 | EXPORT_SYMBOL_GPL(ata_sas_queuecmd); | 3369 | EXPORT_SYMBOL_GPL(ata_sas_queuecmd); |
