From: Tudor Ambarus Date: Fri, 15 Nov 2019 13:49:09 +0000 (+0000) Subject: crypto: atmel-aes - Change data type for "lastc" buffer X-Git-Tag: v5.5-rc1~175^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=57d8154f15e89f53dfb412f4ed32ebe3c3d755a0;p=thirdparty%2Flinux.git crypto: atmel-aes - Change data type for "lastc" buffer In case of in-place decryption, the "lastc" buffer is used to copy the last ciphertext block before the decryption of the message. It is later used to update the req->iv of the skcipher_request. "lastc" variable is not used to interact with the hardware, there is no restriction to be of type "u32". Change the type of "lastc" to "u8". Signed-off-by: Tudor Ambarus Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/atmel-aes.c b/drivers/crypto/atmel-aes.c index 3c88c164c3dc6..91092504bc96b 100644 --- a/drivers/crypto/atmel-aes.c +++ b/drivers/crypto/atmel-aes.c @@ -155,7 +155,7 @@ struct atmel_aes_authenc_ctx { struct atmel_aes_reqctx { unsigned long mode; - u32 lastc[AES_BLOCK_SIZE / sizeof(u32)]; + u8 lastc[AES_BLOCK_SIZE]; }; #if IS_ENABLED(CONFIG_CRYPTO_DEV_ATMEL_AUTHENC)