Commit b71ad22d authored by Gilad Ben-Yossef's avatar Gilad Ben-Yossef Committed by Greg Kroah-Hartman
Browse files

staging: ccree: avoid unnecessary line continuation



Avoid unnecessary line continuation in log function call.

Signed-off-by: default avatarGilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 079a7174
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1863,8 +1863,9 @@ static inline void ssi_aead_dump_gcm(
		SSI_LOG_DEBUG("%s\n", title);
	}

	SSI_LOG_DEBUG("cipher_mode %d, authsize %d, enc_keylen %d, assoclen %d, cryptlen %d\n", \
				 ctx->cipher_mode, ctx->authsize, ctx->enc_keylen, req->assoclen, req_ctx->cryptlen);
	SSI_LOG_DEBUG("cipher_mode %d, authsize %d, enc_keylen %d, assoclen %d, cryptlen %d\n",
		      ctx->cipher_mode, ctx->authsize, ctx->enc_keylen,
		      req->assoclen, req_ctx->cryptlen);

	if (ctx->enckey)
		dump_byte_array("mac key", ctx->enckey, 16);