projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38b6db1
)
staging: ccree: fix indentation of var assignment
author
Gilad Ben-Yossef
<gilad@benyossef.com>
Sun, 3 Dec 2017 13:58:15 +0000
(13:58 +0000)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/drivers/staging/ccree/ssi_aead.c
b/drivers/staging/ccree/ssi_aead.c
index 0b085dc1652fa440bedb6abc03f57f6286d2390c..f214df79a52e8b809bf881c72478cb529054ede2 100644
(file)
--- a/
drivers/staging/ccree/ssi_aead.c
+++ b/
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;