From: Yaniv Gardi Date: Thu, 24 Nov 2016 00:31:30 +0000 (-0800) Subject: scsi: ufs: update device descriptor maximum size X-Git-Tag: v4.10-rc1~128^2~38 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=24d6243204633be4b710754f279b3ca57c69ceec;p=karo-tx-linux.git scsi: ufs: update device descriptor maximum size According to JESD220B - UFS v2.0, the maximum size of device descriptor has changed from 0x1F to 0x40. This patch updates the maximum size of this descriptor. Signed-off-by: Yaniv Gardi Signed-off-by: Subhash Jadavani Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/ufs/ufs.h b/drivers/scsi/ufs/ufs.h index 7a6ccb680049..8e6709a3fb6b 100644 --- a/drivers/scsi/ufs/ufs.h +++ b/drivers/scsi/ufs/ufs.h @@ -163,7 +163,7 @@ enum desc_header_offset { }; enum ufs_desc_max_size { - QUERY_DESC_DEVICE_MAX_SIZE = 0x1F, + QUERY_DESC_DEVICE_MAX_SIZE = 0x40, QUERY_DESC_CONFIGURAION_MAX_SIZE = 0x90, QUERY_DESC_UNIT_MAX_SIZE = 0x23, QUERY_DESC_INTERCONNECT_MAX_SIZE = 0x06,