Skip to content

Commit

Permalink
crypto: aes_generic - Fix checkpatch errors
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Hartmann <richih.mailinglist@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
RichiH authored and herbertx committed Feb 16, 2010
1 parent 0047e81 commit 8d0c123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/aes_generic.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Cryptographic API.
*
* AES Cipher Algorithm.
Expand Down Expand Up @@ -1127,7 +1127,7 @@ EXPORT_SYMBOL_GPL(crypto_il_tab);

#define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b)

#define imix_col(y,x) do { \
#define imix_col(y, x) do { \
u = star_x(x); \
v = star_x(u); \
w = star_x(v); \
Expand Down

0 comments on commit 8d0c123

Please sign in to comment.