mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
crypto: atmel - use the correct print format
According to Documentation/core-api/printk-formats.rst, Use the correct print format. Printing an unsigned int value should use %u instead of %d. Signed-off-by: Kai Ye <yekai13@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
1f34cc4a8d
commit
3eb75fc7d8
@ -339,7 +339,7 @@ int atmel_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||
}
|
||||
|
||||
if (bus_clk_rate > 1000000L) {
|
||||
dev_err(dev, "%d exceeds maximum supported clock frequency (1MHz)\n",
|
||||
dev_err(dev, "%u exceeds maximum supported clock frequency (1MHz)\n",
|
||||
bus_clk_rate);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
@ -434,7 +434,7 @@ static int atmel_sha_init(struct ahash_request *req)
|
||||
|
||||
ctx->flags = 0;
|
||||
|
||||
dev_dbg(dd->dev, "init: digest size: %d\n",
|
||||
dev_dbg(dd->dev, "init: digest size: %u\n",
|
||||
crypto_ahash_digestsize(tfm));
|
||||
|
||||
switch (crypto_ahash_digestsize(tfm)) {
|
||||
@ -1102,7 +1102,7 @@ static int atmel_sha_start(struct atmel_sha_dev *dd)
|
||||
struct atmel_sha_reqctx *ctx = ahash_request_ctx(req);
|
||||
int err;
|
||||
|
||||
dev_dbg(dd->dev, "handling new req, op: %lu, nbytes: %d\n",
|
||||
dev_dbg(dd->dev, "handling new req, op: %lu, nbytes: %u\n",
|
||||
ctx->op, req->nbytes);
|
||||
|
||||
err = atmel_sha_hw_init(dd);
|
||||
|
Loading…
Reference in New Issue
Block a user