mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 07:04:00 +08:00
crypto: sa2ul - Fix pointer-to-int-cast warning
drivers/crypto/sa2ul.c: In function ‘sa_sha_init’: drivers/crypto/sa2ul.c:1486:33: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] crypto_ahash_digestsize(tfm), (u64)rctx); ^ ./include/linux/dev_printk.h:123:47: note: in definition of macro ‘dev_dbg’ dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__); \ ^~~~~~~~~~~ Use %p to print rctx pointer. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
f858ddef5a
commit
ea066b7a3d
@ -1482,8 +1482,8 @@ static int sa_sha_init(struct ahash_request *req)
|
||||
struct sa_sha_req_ctx *rctx = ahash_request_ctx(req);
|
||||
struct sa_tfm_ctx *ctx = crypto_ahash_ctx(tfm);
|
||||
|
||||
dev_dbg(sa_k3_dev, "init: digest size: %d, rctx=%llx\n",
|
||||
crypto_ahash_digestsize(tfm), (u64)rctx);
|
||||
dev_dbg(sa_k3_dev, "init: digest size: %u, rctx=%p\n",
|
||||
crypto_ahash_digestsize(tfm), rctx);
|
||||
|
||||
ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback.ahash);
|
||||
rctx->fallback_req.base.flags =
|
||||
|
Loading…
Reference in New Issue
Block a user