Commit 2aa3da2d authored by Dan Carpenter's avatar Dan Carpenter Committed by Herbert Xu

crypto: keembay-ocs-hcu - Fix a WARN() message

The first argument to WARN() is a condition and the messages is the
second argument is the string, so this WARN() will only display the
__func__ part of the message.

Fixes: ae832e32 ("crypto: keembay-ocs-hcu - Add HMAC support")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Acked-by: default avatarDaniele Alessandrelli <daniele.alessandrelli@intel.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent a04ea6f7
...@@ -388,7 +388,7 @@ static int prepare_ipad(struct ahash_request *req) ...@@ -388,7 +388,7 @@ static int prepare_ipad(struct ahash_request *req)
* longer keys are hashed by kmb_ocs_hcu_setkey()). * longer keys are hashed by kmb_ocs_hcu_setkey()).
*/ */
if (ctx->key_len > rctx->blk_sz) { if (ctx->key_len > rctx->blk_sz) {
WARN("%s: Invalid key length in tfm context\n", __func__); WARN(1, "%s: Invalid key length in tfm context\n", __func__);
return -EINVAL; return -EINVAL;
} }
memzero_explicit(&ctx->key[ctx->key_len], memzero_explicit(&ctx->key[ctx->key_len],
......
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