1
0
Fork 0

crypto: virtio - pr_err() strings should end with newlines

pr_err() messages should terminated with a new-line to avoid
other messages being concatenated onto the end.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
hifive-unleashed-5.1
Arvind Yadav 2017-09-25 16:06:13 +05:30 committed by Herbert Xu
parent bfbd6254b8
commit e02b8b43f5
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ static int virtio_crypto_ablkcipher_setkey(struct crypto_ablkcipher *tfm,
struct virtio_crypto *vcrypto =
virtcrypto_get_dev_node(node);
if (!vcrypto) {
pr_err("virtio_crypto: Could not find a virtio device in the system");
pr_err("virtio_crypto: Could not find a virtio device in the system\n");
return -ENODEV;
}