projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0045c8d
)
Staging: android: modify memory allocation style in ion_test.c
author
Ben Marsh
<bmarsh94@gmail.com>
Sun, 24 Apr 2016 18:16:02 +0000
(20:16 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 30 Apr 2016 00:40:50 +0000
(17:40 -0700)
Modifies the memory allocation style ion_test.c in order to remove a
checkpatch.pl warning
Signed-off-by: Ben Marsh <bmarsh94@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion_test.c
patch
|
blob
|
history
diff --git
a/drivers/staging/android/ion/ion_test.c
b/drivers/staging/android/ion/ion_test.c
index 83a3af06d01c3c7f2a91b6a508d9fdad64e86464..5a396a1a8238262a554ecf2a63e1a690539b2799 100644
(file)
--- a/
drivers/staging/android/ion/ion_test.c
+++ b/
drivers/staging/android/ion/ion_test.c
@@
-208,7
+208,7
@@
static int ion_test_open(struct inode *inode, struct file *file)
struct ion_test_data *data;
struct miscdevice *miscdev = file->private_data;
- data = kzalloc(sizeof(
struct ion_test_
data), GFP_KERNEL);
+ data = kzalloc(sizeof(
*
data), GFP_KERNEL);
if (!data)
return -ENOMEM;