diff options
author | Tom Yan <tom.ty89@gmail.com> | 2016-07-07 01:13:09 +0800 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2016-07-06 13:32:05 -0400 |
commit | 8554e5e1c793b376598551c45242f61777607499 (patch) | |
tree | 85ef03b25a0e721b33ca96d87f7c91fb87e30294 /drivers/ata | |
parent | a3e8ab1b462d609147afb8df1291e54708593f15 (diff) | |
download | linux-8554e5e1c793b376598551c45242f61777607499.tar.bz2 |
libata-scsi: correct cbd to CDB in comment
It's Command Descriptor Block. Also capitalized it.
Signed-off-by: Tom Yan <tom.ty89@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index f1125fd7243d..c9cd21614d50 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c @@ -304,7 +304,7 @@ static void ata_scsi_set_invalid_field(struct ata_device *dev, struct scsi_cmnd *cmd, u16 field, u8 bit) { ata_scsi_set_sense(dev, cmd, ILLEGAL_REQUEST, 0x24, 0x0); - /* "Invalid field in cbd" */ + /* "Invalid field in CDB" */ scsi_set_sense_field_pointer(cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE, field, bit, 1); } |