[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250907202752.3613183-1-alok.a.tiwari@oracle.com>
Date: Sun, 7 Sep 2025 13:27:49 -0700
From: Alok Tiwari <alok.a.tiwari@...cle.com>
To: alim.akhtar@...sung.com, krzk@...nel.org, peter.griffin@...aro.org,
martin.petersen@...cle.com, linux-samsung-soc@...r.kernel.org,
linux-scsi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org
Cc: alok.a.tiwari@...cle.com, linux-kernel@...r.kernel.org
Subject: [PATCH] scsi: ufs: exynos: correct sync pattern mask timing comment
Fix the comment for SYNC_LEN_G2 in exynos_ufs_config_sync_pattern_mask().
The actual value is 40us, not 44us, matching the configured mask timing.
This change improves code clarity and avoids potential confusion for
readers and maintainers.
No functional changes.
Signed-off-by: Alok Tiwari <alok.a.tiwari@...cle.com>
---
drivers/ufs/host/ufs-exynos.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ufs/host/ufs-exynos.c b/drivers/ufs/host/ufs-exynos.c
index 513cbcfa10ac..70d195179eba 100644
--- a/drivers/ufs/host/ufs-exynos.c
+++ b/drivers/ufs/host/ufs-exynos.c
@@ -776,7 +776,7 @@ static void exynos_ufs_config_sync_pattern_mask(struct exynos_ufs *ufs,
u32 mask, sync_len;
enum {
SYNC_LEN_G1 = 80 * 1000, /* 80us */
- SYNC_LEN_G2 = 40 * 1000, /* 44us */
+ SYNC_LEN_G2 = 40 * 1000, /* 40us */
SYNC_LEN_G3 = 20 * 1000, /* 20us */
};
int i;
--
2.50.1
Powered by blists - more mailing lists