Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1654208
| Path | csiph.com!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | srishti sharma <srishtishar@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH] Staging: ccree: cc_crypto_ctx.h: Fixed a comment coding style issue. |
| Date | Wed, 31 May 2017 15:00:02 +0200 |
| Message-ID | <tNboe-4PD-9@gated-at.bofh.it> (permalink) |
| X-Original-To | gregkh@linuxfoundation.org |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=wjZ1w1x22Vv4w8BWpZJAeZ57f6AZHUUtK9xDF3yNlDY=; b=MJpxuzaAuakJ6NRSqCSLffczHJ7u2Ou6yzx67QlP/WZgdPIKyF/z37ZFDq4o4N15MB Ahluejuhu5J1JSfUQY9/Yf5g7Naz/X+DGg/cazcaWGOGxAREV0ykah1dEpSO4XkoRAcW sPhZAYyz8fw3tyCgWR6ApM96qXYLZO8Wz9hJcmIgjgEUUT+cOiCe3nha39Cs25PAMMVg RVorQalKN90zMY2b8U1Uzh5pY5sgRAwzt4WUmdcrOuJs1xglbdYNNkBkpqGHqlxaiDUq Ns8UycFzMK9mKBwvyQMXC9cwuhuOORaH1/qXU1xGtETTCZLKurMoQ+/HspiBRdbLpyrk QXMA== |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=wjZ1w1x22Vv4w8BWpZJAeZ57f6AZHUUtK9xDF3yNlDY=; b=UTE97vWsN2QvVAOZjAi9Z2w80Gnv0jJ8v2mULn+nX3uaxX5iweiL1TYKsI3dAkt6d3 dSxMDcg4hF2Xi4lg/aOK+VuO0d8p0CKs5qeuSQmh0Yw+asgSS96aIEjQRF65pD0xU53f d/ZGOX417uYgY2rH0NDlxmjDzk5HRjqcerZLHIsteA4SAK4MmT9QHhJhMsPaiWIwSHep myUwk+pZcQr+gNvjEwOpZYqEHE6VCG40CJc7wcoL5JLsE1yv90UJMY3GnFEiOxZv1IUD UwXwjebF2CljQvDcKBybmz6YUBqj60IePA+XXZU98tulYJjPshvZctVY0/9pczracxGY 58Kg== |
| X-Gm-Message-State | AODbwcCcp1iIk7tbf9PkNAMtxPmCP35SGooELzc2+x3oc255NATYTILB wCkYidbQYl463g== |
| X-Received | by 10.99.150.2 with SMTP id c2mr21626610pge.27.1496235299303; Wed, 31 May 2017 05:54:59 -0700 (PDT) |
| X-Mailer | git-send-email 2.7.4 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 27 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | gilad@benyossef.com, linux-crypto@vger.kernel.org, driverdev-devel@linuxdriverproject.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, srishti sharma <srishtishar@gmail.com> |
| X-Original-Date | Wed, 31 May 2017 18:24:55 +0530 |
| X-Original-Message-ID | <1496235295-2696-1-git-send-email-srishtishar@gmail.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1654208 |
Show key headers only | View raw
Fixed a comment coding style issue that generated a warning stating that block comments should align the * on each line.
Signed-off-by: srishti sharma <srishtishar@gmail.com>
---
drivers/staging/ccree/cc_crypto_ctx.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/ccree/cc_crypto_ctx.h b/drivers/staging/ccree/cc_crypto_ctx.h
index c5784bc..38f6615 100644
--- a/drivers/staging/ccree/cc_crypto_ctx.h
+++ b/drivers/staging/ccree/cc_crypto_ctx.h
@@ -239,10 +239,10 @@ struct drv_ctx_cipher {
enum drv_crypto_padding_type padding_type;
u32 key_size; /* numeric value in bytes */
u32 data_unit_size; /* required for XTS */
- /* block_state is the AES engine block state.
- * It is used by the host to pass IV or counter at initialization.
- * It is used by SeP for intermediate block chaining state and for
- * returning MAC algorithms results. */
+ /* block_state is the AES engine block state.
+ * It is used by the host to pass IV or counter at initialization.
+ * It is used by SeP for intermediate block chaining state and for
+ * returning MAC algorithms results. */
u8 block_state[CC_AES_BLOCK_SIZE];
u8 key[CC_AES_KEY_SIZE_MAX];
u8 xex_key[CC_AES_KEY_SIZE_MAX];
2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Staging: ccree: cc_crypto_ctx.h: Fixed a comment coding style issue. srishti sharma <srishtishar@gmail.com> - 2017-05-31 15:00 +0200 Re: [PATCH] Staging: ccree: cc_crypto_ctx.h: Fixed a comment coding style issue. Greg KH <gregkh@linuxfoundation.org> - 2017-06-03 16:10 +0200
csiph-web