Commit 8d0c123f authored by Richard Hartmann's avatar Richard Hartmann Committed by Herbert Xu

crypto: aes_generic - Fix checkpatch errors

Signed-off-by: default avatarRichard Hartmann <richih.mailinglist@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 0047e81d
/* /*
* Cryptographic API. * Cryptographic API.
* *
* AES Cipher Algorithm. * AES Cipher Algorithm.
...@@ -1127,7 +1127,7 @@ EXPORT_SYMBOL_GPL(crypto_il_tab); ...@@ -1127,7 +1127,7 @@ EXPORT_SYMBOL_GPL(crypto_il_tab);
#define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b) #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); \ u = star_x(x); \
v = star_x(u); \ v = star_x(u); \
w = star_x(v); \ w = star_x(v); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment