staging: ccree: fix indentation of var assignment
authorGilad Ben-Yossef <gilad@benyossef.com>
Sun, 3 Dec 2017 13:58:15 +0000 (13:58 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 Dec 2017 08:55:15 +0000 (09:55 +0100)
Fix indentation of var assignment split across lines for
better readability.

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 0b085dc..f214df7 100644 (file)
@@ -1238,10 +1238,10 @@ static enum cc_flow_mode ssi_aead_get_data_flow_mode(
        } else { /* Decrypt */
                if (setup_flow_mode == S_DIN_to_AES)
                        data_flow_mode = is_single_pass ?
-                                       AES_and_HASH : DIN_AES_DOUT;
+                               AES_and_HASH : DIN_AES_DOUT;
                else
                        data_flow_mode = is_single_pass ?
-                                       DES_and_HASH : DIN_DES_DOUT;
+                               DES_and_HASH : DIN_DES_DOUT;
        }
 
        return data_flow_mode;