summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-11-17 18:19:08 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-27 09:20:40 +0100
commit217f93366ec7f6f6d85dba901b6e3cc312ef6ec6 (patch)
tree98e6402fce7dcb23cbea22f8385d7e91ed96e9c7 /drivers
parentd5a2a8186854982d6eeee6cf1c66ba5e5fe64125 (diff)
downloadlinux-217f93366ec7f6f6d85dba901b6e3cc312ef6ec6.tar.bz2
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')
-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);