From 351ffe87e758538da0291c9894c09c07bd66882a Mon Sep 17 00:00:00 2001 From: Meng Yu Date: Thu, 22 Jul 2021 15:01:53 +0800 Subject: [PATCH] crypto: ecc - Correct an error in the comments mainline inclusion from mainline-v5.13-rc1 commit 0193b32f565e14ef07ced5d6bf8986490ec8e0f1 category: bugfix bugzilla: 173981 CVE: NA Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=0193b32f565e14ef07ced5d6bf8986490ec8e0f1 ---------------------------------------------------------------------- Remove repeated word 'bit' in comments. Signed-off-by: Meng Yu Signed-off-by: Herbert Xu Signed-off-by: Mingqiang Ling Signed-off-by: Zheng Zengkai --- crypto/ecc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ecc.c b/crypto/ecc.c index 884fe05fc270..afc6cefdc1d9 100644 --- a/crypto/ecc.c +++ b/crypto/ecc.c @@ -139,7 +139,7 @@ bool vli_is_zero(const u64 *vli, unsigned int ndigits) } EXPORT_SYMBOL(vli_is_zero); -/* Returns nonzero if bit bit of vli is set. */ +/* Returns nonzero if bit of vli is set. */ static u64 vli_test_bit(const u64 *vli, unsigned int bit) { return (vli[bit / 64] & ((u64)1 << (bit % 64))); -- GitLab