aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/android
diff options
context:
space:
mode:
authorAshish Kalra <eashishkalra@gmail.com>2017-12-02 22:51:05 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-06 10:05:06 +0100
commitba2d563f82d9c8c56655dc370aa75013f78d13e0 (patch)
tree042a5e49027c5b4df5eeddb4510b07076a4e4de5 /drivers/staging/android
parentstaging: olpc_dcon: Line up parentheses in func calls and defs (diff)
downloadlinux-dev-ba2d563f82d9c8c56655dc370aa75013f78d13e0.tar.xz
linux-dev-ba2d563f82d9c8c56655dc370aa75013f78d13e0.zip
staging: android: Fix checkpatch.pl error
fixed CHECK: Lines should not end with a '(' reported by checkpatch.pl Signed-off-by: Ashish Kalra <eashishkalra@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android')
-rw-r--r--drivers/staging/android/ion/ion.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c
index fa4b75f49859..cada3725e2e4 100644
--- a/drivers/staging/android/ion/ion.c
+++ b/drivers/staging/android/ion/ion.c
@@ -557,9 +557,9 @@ void ion_device_add_heap(struct ion_heap *heap)
char debug_name[64];
snprintf(debug_name, 64, "%s_shrink", heap->name);
- debug_file = debugfs_create_file(
- debug_name, 0644, dev->debug_root, heap,
- &debug_shrink_fops);
+ debug_file = debugfs_create_file(debug_name,
+ 0644, dev->debug_root, heap,
+ &debug_shrink_fops);
if (!debug_file) {
char buf[256], *path;