From: Gilad Ben-Yossef Date: Thu, 13 Jul 2017 08:19:59 +0000 (+0300) Subject: staging: ccree: avoid unnecessary line continuation X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b71ad22dffe1090888cabfed94ad3655299665a0;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git staging: ccree: avoid unnecessary line continuation Avoid unnecessary line continuation in log function call. Signed-off-by: Gilad Ben-Yossef Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ccree/ssi_aead.c b/drivers/staging/ccree/ssi_aead.c index 46dd70872d57..ea29b8a1a71d 100644 --- a/drivers/staging/ccree/ssi_aead.c +++ b/drivers/staging/ccree/ssi_aead.c @@ -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);