From: Tom Yan Date: Tue, 12 Jul 2016 13:29:35 +0000 (+0800) Subject: libata-scsi: correct SPC version descriptor X-Git-Tag: v4.14-rc1~2839^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29a37ea40147eb8ef648cb89a7c595e483101ff4;p=platform%2Fkernel%2Flinux-rpi.git libata-scsi: correct SPC version descriptor The comment suggests we should be having an SPC-3 version descriptor but the 0260h is the code for "SPC-2 (no version claimed)". Correct it to 0300h so that it has the "SPC-3 (no version claimed)" descriptor. Note that we are claiming SPC-3 version compatibility in the VERSION field of the standard INQUIRY data. Therefore, I assume the typo was on the code but not on the comment. Signed-off-by: Tom Yan Signed-off-by: Tejun Heo --- diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index b0d4bba..f6888fc 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c @@ -2075,8 +2075,8 @@ static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf) 0x03, 0x20, /* SBC-2 (no version claimed) */ - 0x02, - 0x60 /* SPC-3 (no version claimed) */ + 0x03, + 0x00 /* SPC-3 (no version claimed) */ }; const u8 versions_zbc[] = { 0x00,