crypto: omap-aes - 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>
This commit is contained in:
Arvind Yadav 2017-09-25 16:06:12 +05:30 committed by Herbert Xu
parent 4d0ec22943
commit bfbd6254b8

View file

@ -215,7 +215,7 @@ static int do_encrypt_iv(struct aead_request *req, u32 *tag, u32 *iv)
} }
/* fall through */ /* fall through */
default: default:
pr_err("Encryption of IV failed for GCM mode"); pr_err("Encryption of IV failed for GCM mode\n");
break; break;
} }