Procházet zdrojové kódy

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>
Arvind Yadav před 7 roky
rodič
revize
bfbd6254b8
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      drivers/crypto/omap-aes-gcm.c

+ 1 - 1
drivers/crypto/omap-aes-gcm.c

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