summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorColin Ian King2017-11-17 19:19:08 +0100
committerGreg Kroah-Hartman2017-11-27 09:20:40 +0100
commit217f93366ec7f6f6d85dba901b6e3cc312ef6ec6 (patch)
tree98e6402fce7dcb23cbea22f8385d7e91ed96e9c7 /drivers/staging
parentstaging: ccree: drop unused macro (diff)
downloadkernel-qcow2-linux-217f93366ec7f6f6d85dba901b6e3cc312ef6ec6.tar.gz
kernel-qcow2-linux-217f93366ec7f6f6d85dba901b6e3cc312ef6ec6.tar.xz
kernel-qcow2-linux-217f93366ec7f6f6d85dba901b6e3cc312ef6ec6.zip
staging: ccree: fix incorrect indentation of break statement
The break statement is indented one level too many, fix this. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/ccree/ssi_aead.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ccree/ssi_aead.c b/drivers/staging/ccree/ssi_aead.c
index fcff625f8d2d..2cd2b0f7cb15 100644
--- a/drivers/staging/ccree/ssi_aead.c
+++ b/drivers/staging/ccree/ssi_aead.c
@@ -2160,7 +2160,7 @@ static int ssi_aead_process(struct aead_request *req,
if (ctx->cipher_mode == DRV_CIPHER_GCTR)
ssi_aead_gcm(req, desc, &seq_len);
#endif /*SSI_CC_HAS_AES_GCM*/
- break;
+ break;
#endif
default:
dev_err(dev, "Unsupported authenc (%d)\n", ctx->auth_mode);