Message ID | 20230110135042.2940847-8-vincent.whitchurch@axis.com |
---|---|
State | New |
Headers | show |
Series | crypto: axis - make tests pass | expand |
diff --git a/drivers/crypto/axis/artpec6_crypto.c b/drivers/crypto/axis/artpec6_crypto.c index 78d067ce4138..5f30f3d0315f 100644 --- a/drivers/crypto/axis/artpec6_crypto.c +++ b/drivers/crypto/axis/artpec6_crypto.c @@ -2831,7 +2831,7 @@ static struct skcipher_alg crypto_algos[] = { .cra_priority = 300, .cra_flags = CRYPTO_ALG_ASYNC | CRYPTO_ALG_ALLOCATES_MEMORY, - .cra_blocksize = 1, + .cra_blocksize = AES_BLOCK_SIZE, .cra_ctxsize = sizeof(struct artpec6_cryptotfm_context), .cra_alignmask = 3, .cra_module = THIS_MODULE,
Use the correct XTS blocksize to fix this warning with CRYPTO_MANAGER_EXTRA_TESTS: skcipher: blocksize for artpec6-xts-aes (1) doesn't match generic impl (16) Signed-off-by: Vincent Whitchurch <vincent.whitchurch@axis.com> --- drivers/crypto/axis/artpec6_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)