Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1656614
| From | srishti sharma <srishtishar@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Staging: ccree: ssi_aead.h: Fixed a pointer declaration error. |
| Date | 2017-06-03 00:50 +0200 |
| Message-ID | <tO3yi-7c0-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Fixed a pointer declaration error , the dereferencing operator was misplaced.
Signed-off-by: srishti sharma <srishtishar@gmail.com>
---
drivers/staging/ccree/ssi_aead.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/ccree/ssi_aead.h b/drivers/staging/ccree/ssi_aead.h
index 654a181..9cf5225 100644
--- a/drivers/staging/ccree/ssi_aead.h
+++ b/drivers/staging/ccree/ssi_aead.h
@@ -97,8 +97,8 @@ struct aead_req_ctx {
struct ssi_mlli assoc;
struct ssi_mlli src;
struct ssi_mlli dst;
- struct scatterlist* srcSgl;
- struct scatterlist* dstSgl;
+ struct scatterlist *srcSgl;
+ struct scatterlist *dstSgl;
unsigned int srcOffset;
unsigned int dstOffset;
enum ssi_req_dma_buf_type assoc_buff_type;
--
2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Staging: ccree: ssi_aead.h: Fixed a pointer declaration error. srishti sharma <srishtishar@gmail.com> - 2017-06-03 00:50 +0200
Re: [PATCH] Staging: ccree: ssi_aead.h: Fixed a pointer declaration error. Greg KH <gregkh@linuxfoundation.org> - 2017-06-03 16:10 +0200
Re: [PATCH] Staging: ccree: ssi_aead.h: Fixed a pointer declaration error. srishti sharma <srishtishar@gmail.com> - 2017-06-03 20:00 +0200
csiph-web