From: Meng Yu Date: Fri, 19 Mar 2021 09:13:34 +0000 (+0800) Subject: crypto: ecc - Correct an error in the comments X-Git-Tag: v5.15~1342^2~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0193b32f565e14ef07ced5d6bf8986490ec8e0f1;p=platform%2Fkernel%2Flinux-starfive.git crypto: ecc - Correct an error in the comments Remove repeated word 'bit' in comments. Signed-off-by: Meng Yu Signed-off-by: Herbert Xu --- diff --git a/crypto/ecc.c b/crypto/ecc.c index 884fe05..afc6cef 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)));