diff options
Diffstat (limited to 'drivers/crypto/geode-aes.h')
-rw-r--r-- | drivers/crypto/geode-aes.h | 4 |
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 { |