Skip to content

Commit

Permalink
crypto: ecc - Correct an error in the comments
Browse files Browse the repository at this point in the history
Remove repeated word 'bit' in comments.

Signed-off-by: Meng Yu <yumeng18@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
yumeng0117 authored and herbertx committed Mar 26, 2021
1 parent 8609f5c commit 0193b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ecc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down

0 comments on commit 0193b32

Please sign in to comment.