From: Colin Ian King <colin.king@canonical.com>
Date: Fri, 17 Nov 2017 18:19:08 +0000 (+0000)
Subject: staging: ccree: fix incorrect indentation of break statement
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=217f93366ec7f6f6d85dba901b6e3cc312ef6ec6;p=linux.git

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

diff --git a/drivers/staging/ccree/ssi_aead.c b/drivers/staging/ccree/ssi_aead.c
index fcff625f8d2d6..2cd2b0f7cb154 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);