Skip to content

Commit

Permalink
crypto: seed - remove trailing semicolon in macro definition
Browse files Browse the repository at this point in the history
The macro use will already have a semicolon.

Signed-off-by: Tom Rix <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
Tom Rix authored and herbertx committed Dec 4, 2020
1 parent be169fe commit 1069e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/seed.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1069e97

Please sign in to comment.