Browse Source

staging: ccree: fix indentation of var assignment

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>
Gilad Ben-Yossef 7 years ago
parent
commit
1b37844735
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/staging/ccree/ssi_aead.c

+ 2 - 2
drivers/staging/ccree/ssi_aead.c

@@ -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;