2023-08-04 07:11:25

by Yonggang Wu

[permalink] [raw]
Subject: [PATCH] lib: crypto: Modify format error

Fix the error(s):
space prohibited after that open square bracket '['

Signed-off-by: Yonggang Wu <[email protected]>
---
lib/crypto/gf128mul.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/crypto/gf128mul.c b/lib/crypto/gf128mul.c
index 8f8c45e0cdcf..96ef5f312911 100644
--- a/lib/crypto/gf128mul.c
+++ b/lib/crypto/gf128mul.c
@@ -208,11 +208,11 @@ void gf128mul_lle(be128 *r, const be128 *b)
for (i = 0;;) {
u8 ch = ((u8 *)b)[15 - i];

- be128_xor(r, r, &p[ 0 + !(ch & 0x80)]);
- be128_xor(r, r, &p[ 2 + !(ch & 0x40)]);
- be128_xor(r, r, &p[ 4 + !(ch & 0x20)]);
- be128_xor(r, r, &p[ 6 + !(ch & 0x10)]);
- be128_xor(r, r, &p[ 8 + !(ch & 0x08)]);
+ be128_xor(r, r, &p[0 + !(ch & 0x80)]);
+ be128_xor(r, r, &p[2 + !(ch & 0x40)]);
+ be128_xor(r, r, &p[4 + !(ch & 0x20)]);
+ be128_xor(r, r, &p[6 + !(ch & 0x10)]);
+ be128_xor(r, r, &p[8 + !(ch & 0x08)]);
be128_xor(r, r, &p[10 + !(ch & 0x04)]);
be128_xor(r, r, &p[12 + !(ch & 0x02)]);
be128_xor(r, r, &p[14 + !(ch & 0x01)]);
--
2.40.1



2023-08-11 11:21:02

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH] lib: crypto: Modify format error

Yonggang Wu <[email protected]> wrote:
> Fix the error(s):
> space prohibited after that open square bracket '['
>
> Signed-off-by: Yonggang Wu <[email protected]>
> ---
> lib/crypto/gf128mul.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)

This patch is pointless.
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt