summaryrefslogtreecommitdiffstats
path: root/drivers/staging/android
diff options
context:
space:
mode:
authorPeng Sun2015-08-27 09:41:07 +0200
committerGreg Kroah-Hartman2015-09-13 03:24:27 +0200
commit7048c1fc37f71f860b5042fbe021c9f98218b122 (patch)
tree2d605c39e99b2b84bb491efa797830821ac72897 /drivers/staging/android
parentstaging: android: ashmem.c: 'No space necessary after' style issue (diff)
downloadkernel-qcow2-linux-7048c1fc37f71f860b5042fbe021c9f98218b122.tar.gz
kernel-qcow2-linux-7048c1fc37f71f860b5042fbe021c9f98218b122.tar.xz
kernel-qcow2-linux-7048c1fc37f71f860b5042fbe021c9f98218b122.zip
staging: android: ashmem.c: 'Alignment' style issue
fix two CHECK issues by checkpatch.pl with --strict: Alignment should match open parenthesis Signed-off-by: Peng Sun <sironhide0null@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android')
-rw-r--r--drivers/staging/android/ashmem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/android/ashmem.c b/drivers/staging/android/ashmem.c
index 1312600e2468..d786ec17e400 100644
--- a/drivers/staging/android/ashmem.c
+++ b/drivers/staging/android/ashmem.c
@@ -834,16 +834,16 @@ static int __init ashmem_init(void)
int ret;
ashmem_area_cachep = kmem_cache_create("ashmem_area_cache",
- sizeof(struct ashmem_area),
- 0, 0, NULL);
+ sizeof(struct ashmem_area),
+ 0, 0, NULL);
if (unlikely(!ashmem_area_cachep)) {
pr_err("failed to create slab cache\n");
return -ENOMEM;
}
ashmem_range_cachep = kmem_cache_create("ashmem_range_cache",
- sizeof(struct ashmem_range),
- 0, 0, NULL);
+ sizeof(struct ashmem_range),
+ 0, 0, NULL);
if (unlikely(!ashmem_range_cachep)) {
pr_err("failed to create slab cache\n");
return -ENOMEM;