mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
crypto: stm32/hash - Fix incorrect printk modifier for size_t
This patch fixes a warning when compiling stm32 because %d is being used on a size_t argument instead of %zd. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
f3880a2356
commit
049ce1505b
@ -352,7 +352,7 @@ static int stm32_hash_xmit_cpu(struct stm32_hash_dev *hdev,
|
||||
|
||||
len32 = DIV_ROUND_UP(length, sizeof(u32));
|
||||
|
||||
dev_dbg(hdev->dev, "%s: length: %d, final: %x len32 %i\n",
|
||||
dev_dbg(hdev->dev, "%s: length: %zd, final: %x len32 %i\n",
|
||||
__func__, length, final, len32);
|
||||
|
||||
hdev->flags |= HASH_FLAGS_CPU;
|
||||
|
Loading…
Reference in New Issue
Block a user