staging: ccree: avoid unnecessary line continuation
authorGilad Ben-Yossef <gilad@benyossef.com>
Thu, 13 Jul 2017 08:19:59 +0000 (11:19 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Jul 2017 06:41:01 +0000 (08:41 +0200)
Avoid unnecessary line continuation in log function call.

Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ccree/ssi_aead.c

index 46dd708..ea29b8a 100644 (file)
@@ -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);