mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
crypto: ecc - Correct an error in the comments
Remove repeated word 'bit' in comments. Signed-off-by: Meng Yu <yumeng18@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
8609f5cfdc
commit
0193b32f56
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ bool vli_is_zero(const u64 *vli, unsigned int ndigits)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(vli_is_zero);
|
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)
|
static u64 vli_test_bit(const u64 *vli, unsigned int bit)
|
||||||
{
|
{
|
||||||
return (vli[bit / 64] & ((u64)1 << (bit % 64)));
|
return (vli[bit / 64] & ((u64)1 << (bit % 64)));
|
||||||
|
|
Loading…
Add table
Reference in a new issue