aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/seed.c
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2020-11-27 08:23:45 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2020-12-04 18:13:16 +1100
commit1069e97688b21b9c754dc8364ccfb3fea79788bf (patch)
treeda2e7233157e73ad6657889f8c96fc8f349750c0 /crypto/seed.c
parentcrypto: x86/poly1305 - Use TEST %reg,%reg instead of CMP $0,%reg (diff)
downloadlinux-dev-1069e97688b21b9c754dc8364ccfb3fea79788bf.tar.xz
linux-dev-1069e97688b21b9c754dc8364ccfb3fea79788bf.zip
crypto: seed - remove trailing semicolon in macro definition
The macro use will already have a semicolon. Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/seed.c')
-rw-r--r--crypto/seed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/seed.c b/crypto/seed.c
index 5e3bef3a617d..27720140820e 100644
--- a/crypto/seed.c
+++ b/crypto/seed.c
@@ -322,7 +322,7 @@ static const u32 KC[SEED_NUM_KCONSTANTS] = {
SS2[byte(t1, 2)] ^ SS3[byte(t1, 3)]; \
t0 += t1; \
X1 ^= t0; \
- X2 ^= t1;
+ X2 ^= t1
static int seed_set_key(struct crypto_tfm *tfm, const u8 *in_key,
unsigned int key_len)