summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Connolly <caleb@connolly.tech>2021-03-10 18:34:01 +0300
committerMartin K. Petersen <martin.petersen@oracle.com>2021-03-17 07:04:40 +0300
commit4f5e51c0ebf04278081caa871b4186789bc98b1c (patch)
tree9a155253b752e3e2f2b7899947db3151326a3ba7
parentf065aca20a2664fd94a3b4cb65eb6cf1e23f4f1b (diff)
downloadlinux-4f5e51c0ebf04278081caa871b4186789bc98b1c.tar.xz
scsi: ufs: core: Remove version check
This check is redundant as all UFS versions are currently supported. Link: https://lore.kernel.org/r/20210310153215.371227-4-caleb@connolly.tech Reviewed-by: Bean Huo <beanhuo@micron.com> Co-developed-by: Nitin Rawat <nitirawa@codeaurora.org> Signed-off-by: Nitin Rawat <nitirawa@codeaurora.org> Signed-off-by: Caleb Connolly <caleb@connolly.tech> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/scsi/ufs/ufshcd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index ec53c0e598c3..ab9a1b15d223 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -9310,10 +9310,6 @@ int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
/* Get UFS version supported by the controller */
hba->ufs_version = ufshcd_get_ufs_version(hba);
- if (hba->ufs_version < ufshci_version(1, 0))
- dev_err(hba->dev, "invalid UFS version 0x%x\n",
- hba->ufs_version);
-
/* Get Interrupt bit mask per version */
hba->intr_mask = ufshcd_get_intr_mask(hba);