aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2014-05-14 11:36:40 +0200
committerHerbert Xu <[email protected]>2014-05-22 21:03:12 +0800
commit2e1fc34b29cba8b0d0a0a16b1dd2304b3b44d4df (patch)
treef42eed137b7a1ced4d261da5d3ae0fce1ecc4539
parentbac79a2a6189d85f830b424c3b0414a4df5235c2 (diff)
crypto: geode - Consistently use AES_KEYSIZE_128
Consistently use AES_KEYSIZE_128 instead of arbitrary defined value. Signed-off-by: Marek Vasut <[email protected]> Cc: Benjamin Herrenschmidt <[email protected]> Cc: Dmitry Kasatkin <[email protected]> Cc: Eric BĂ©nard <[email protected]> Cc: Jussi Kivilinna <[email protected]> Cc: Kent Yoder <[email protected]> Cc: Michal Ludvig <[email protected]> Cc: Varun Wadekar <[email protected]> Cc: Vladimir Zapolskiy <[email protected]> Cc: [email protected] Signed-off-by: Herbert Xu <[email protected]>
-rw-r--r--drivers/crypto/geode-aes.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/crypto/geode-aes.h b/drivers/crypto/geode-aes.h
index 73e7b5f0126f..f442ca972e3c 100644
--- a/drivers/crypto/geode-aes.h
+++ b/drivers/crypto/geode-aes.h
@@ -10,8 +10,6 @@
#define _GEODE_AES_H_
/* driver logic flags */
-#define AES_KEY_LENGTH 16
-
#define AES_MODE_ECB 0
#define AES_MODE_CBC 1
@@ -62,7 +60,7 @@ struct geode_aes_op {
u32 flags;
int len;
- u8 key[AES_KEY_LENGTH];
+ u8 key[AES_KEYSIZE_128];
u8 *iv;
union {