Commit 217f9336 authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

staging: ccree: fix incorrect indentation of break statement

The break statement is indented one level too many, fix this.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d5a2a818
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment