aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Yan <[email protected]>2016-07-07 01:13:08 +0800
committerTejun Heo <[email protected]>2016-07-06 13:32:03 -0400
commita3e8ab1b462d609147afb8df1291e54708593f15 (patch)
tree5ddbc49c35267a1197e6ee1e1d68889ed22c9980
parent3e70af86e52e9e9e8fe32027b0471a8da93b498e (diff)
libata-scsi: do not respond with "invalid field" for FORMAT UNIT
It does not make sense and is confusing to respond with "Invalid field in CDB" while we have no support at all implemented for FORMAT UNIT. It is decent to let it go to the default, which will respond with "Invalid command operation code" instead. Signed-off-by: Tom Yan <[email protected]> Signed-off-by: Tejun Heo <[email protected]>
-rw-r--r--drivers/ata/libata-scsi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c
index bfec66fb26e2..f1125fd7243d 100644
--- a/drivers/ata/libata-scsi.c
+++ b/drivers/ata/libata-scsi.c
@@ -4039,11 +4039,6 @@ void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd)
args.done = cmd->scsi_done;
switch(scsicmd[0]) {
- /* TODO: worth improving? */
- case FORMAT_UNIT:
- ata_scsi_invalid_field(dev, cmd, 0);
- break;
-
case INQUIRY:
if (scsicmd[1] & 2) /* is CmdDt set? */
ata_scsi_invalid_field(dev, cmd, 1);