Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1407439
| From | Shubham Bansal <illusionist.neo@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Staging: android: ion: fixed a kzalloc coding style issue. |
| Date | 2016-05-26 10:10 +0200 |
| Message-ID | <rCYwG-3W0-17@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Fixed a coding style issue. Issue reported by checkpatch.pl. Signed-off-by: Shubham Bansal <illusionist.neo@gmail.com> --- drivers/staging/android/ion/ion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c index 8536567..2217ccb 100644 --- a/drivers/staging/android/ion/ion.c +++ b/drivers/staging/android/ion/ion.c @@ -184,7 +184,7 @@ static struct ion_buffer *ion_buffer_create(struct ion_heap *heap, struct scatterlist *sg; int i, ret; - buffer = kzalloc(sizeof(struct ion_buffer), GFP_KERNEL); + buffer = kzalloc(sizeof(*buffer), GFP_KERNEL); if (!buffer) return ERR_PTR(-ENOMEM); -- 2.1.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Staging: android: ion: fixed a kzalloc coding style issue. Shubham Bansal <illusionist.neo@gmail.com> - 2016-05-26 10:10 +0200 Re: [PATCH] Staging: android: ion: fixed a kzalloc coding style issue. Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-05-26 14:40 +0200
csiph-web