Skip to content

Commit 0bd0e43

Browse files
aloktiwamartinkpetersen
authored andcommitted
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@oracle.com> Reviewed-by: Peter Griffin <peter.griffin@linaro.org> Message-ID: <20250907202752.3613183-1-alok.a.tiwari@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent fea2bfd commit 0bd0e43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/ufs/host/ufs-exynos.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ static void exynos_ufs_config_sync_pattern_mask(struct exynos_ufs *ufs,
776776
u32 mask, sync_len;
777777
enum {
778778
SYNC_LEN_G1 = 80 * 1000, /* 80us */
779-
SYNC_LEN_G2 = 40 * 1000, /* 44us */
779+
SYNC_LEN_G2 = 40 * 1000, /* 40us */
780780
SYNC_LEN_G3 = 20 * 1000, /* 20us */
781781
};
782782
int i;

0 commit comments

Comments
 (0)